Package hu.sztaki.ilab.longneck.util.dummy

Examples of hu.sztaki.ilab.longneck.util.dummy.DummyEntity


    }
   
    @Test
    public void testEntityReference() {
        EntityReference o = new EntityReference();
        o.setReferredEntity(new DummyEntity(1));
       
        // Test correct class and differing object instances
        final Object ocopy = o.clone();       
        Assert.assertTrue(ocopy instanceof EntityReference);
        Assert.assertFalse(o == ocopy);
View Full Code Here

TOP

Related Classes of hu.sztaki.ilab.longneck.util.dummy.DummyEntity

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.