michail-prusakov

Results 2 issues of michail-prusakov

Consider the following unit test: import java.util.List; import org.apache.jdbm.DB; import org.apache.jdbm.DBMaker; import org.junit.Test; public class JDBMTester { ``` @Test public void testAddValueToHead() { DB db = DBMaker.openFile("tmp2").make(); List list =...

Consider the unit test below. The test fails with NotSerializableException. However if i switch to java serialiazation mechanism everything works as expected. import java.util.List; import org.apache.jdbm.DB; import org.apache.jdbm.DBMaker; import org.joda.time.DateTime;...