Package com.mobixess.jodb.tests.testobjects

Examples of com.mobixess.jodb.tests.testobjects.ObjectC


        testFileDir.mkdirs();
        File testFile = new File(testFileDir,SimpleAddTest.class.getSimpleName()+(_testCounter++)+".jdb");
        testFile.delete();
       
        JODBSessionContainer sessionContainer = getContainerForFile(testFile);
        ObjectC objectC = new ObjectC();
        sessionContainer.set(objectC);
        sessionContainer.commit();
        sessionContainer.close();
       
        sessionContainer = getContainerForFile(testFile);
        List classes = sessionContainer.getAllObjects();
        if(classes.size()!=1){
            throw new RuntimeException(""+classes.size());
        }
        Object obj = classes.get(0);
        if(obj.getClass() != objectC.getClass()){
            throw new RuntimeException();
        }
        sessionContainer.close();
    }
View Full Code Here

TOP

Related Classes of com.mobixess.jodb.tests.testobjects.ObjectC

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.