Package org.apache.isis.application

Examples of org.apache.isis.application.BusinessObject


public class ColorTest extends ValueTestCase {

    public void testEncodedString() {
        MockControl control = MockControl.createControl(BusinessObject.class);
        BusinessObject bo = (BusinessObject) control.getMock();
        bo.objectChanged();
        control.replay(); // finished recording

        Color color = new Color(bo);
        assertEquals("enc", "NULL", color.asEncodedString());
View Full Code Here

TOP

Related Classes of org.apache.isis.application.BusinessObject

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.