.setCurrentLoc(author2, 1);
VersionedFile file2 = data.getFileByFilename("/trunk/dir2/file2")
.setInitialLoc(author1, 10)
.setCurrentLoc(author1, 94)
.setCurrentLoc(author2, 8);
data.addChangeSet(buildChangeSet(1, author1, file1, new LineCount(2, 0)))
.addChangeSet(buildChangeSet(2, author2, file1, new LineCount(6, 3)))
.addChangeSet(buildChangeSet(3, author1, file1, new LineCount(8, 5)))
.addChangeSet(buildChangeSet(4, author1, file2, new LineCount(90, 7)))
.addChangeSet(buildChangeSet(5, author2, file2, new LineCount(12, 25)))
.addChangeSet(buildChangeSet(6, author1, file2, new LineCount(33, 11)))
.addAuthor(author1)
.addAuthor(author2)
.setRevisionRange(revisionRange)
.setRepository(repository);
}