Implemented Maven jar-with-dependencies build

Added some @Override annotations
Removed buggy test cases.
refs #8
This commit is contained in:
2013-01-25 13:46:16 +00:00
parent ef36d09218
commit 44328157ea
4 changed files with 29 additions and 21 deletions

View File

@@ -75,7 +75,7 @@ public class SerializerTest {
Serializable s = null;
Serializer.storeObject(outStream, s);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
//fail("The test case is a prototype.");
}
/**
@@ -88,23 +88,6 @@ public class SerializerTest {
Object expResult = null;
Object result = Serializer.loadObject(inputStream);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of loadObject method, of class Serializer.
*/
@Test
public void testLoadObject_InputStream_boolean() {
System.out.println("loadObject");
InputStream inputStream = null;
boolean casually = false;
Object expResult = null;
Object result = Serializer.loadObject(inputStream, casually);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
}