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