* Tests a specific file revision contents
* @throws IOException If some problems arise while fetching the file contents to use in the test
*/
@Test
public void testFileContents() throws IOException {
VersionedFile vf = sSession.uniqueResult("from VersionedFile where path = 'test_package/Sum.java'", VersionedFile.class);
for (Revision r : vf.getRevisions()) {
if (r.getNumber().compareTo("614e3cc9b980a6fc317c1816867f2fa3dbf84aad") == 0) {
BufferedReader in = new BufferedReader(new InputStreamReader(EvolizerGITPlugin.openFile("./Sum.java")));
String res = "";
String i = in.readLine();