assertEquals( 2, result.getChangeLog().getChangeSets().size() );
//Now only retrieve the changelog after timeBeforeSecondChangeLog
Date currentTime = new Date();
result = provider
.changeLog( getScmRepository(), fileSet, timeBeforeSecond, currentTime, 0, new ScmBranch( "" ) );
//Thorough assert of the last result
assertTrue( result.getProviderMessage(), result.isSuccess() );
assertEquals( 1, result.getChangeLog().getChangeSets().size() );
ChangeSet changeset = result.getChangeLog().getChangeSets().get( 0 );