Package com.semagia.atomico.dm

Examples of com.semagia.atomico.dm.IEntity


    private static final String _TITLE = "MyTitle";
    private static final long _UPDATED = System.currentTimeMillis();


    public void testValidEntity() {
        IEntity entity = new MyEntity(_ID, _TITLE, _UPDATED);
        assertEquals(_ID, entity.getId());
        assertEquals(_TITLE, entity.getTitle());
        assertEquals(_UPDATED, entity.getUpdated());
    }
View Full Code Here

TOP

Related Classes of com.semagia.atomico.dm.IEntity

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.