*/
@Test( groups = { TestUtils.UNIT } )
public void testInitialCheckout() throws IllegalArgumentException, IOException {
Repository m_repository = new MockRepository();
byte[] testContent = new byte[] {'i', 'n', 'i', 't', 'i', 'a', 'l'};
m_repository.commit(new ByteArrayInputStream(testContent), 0);
BackupRepository m_backupRepository = new MockBackupRepository();
CachedRepository m_cachedRepository = new CachedRepositoryImpl(null, m_repository, m_backupRepository, 0);
InputStream input = m_cachedRepository.checkout(1);