Package org.apache.agila.example

Examples of org.apache.agila.example.LeaveApplicationTask


    public void testPropertiesSet() {
        Node node = businessProcess.getNode(new NodeID(3));
        assertTrue("Not found node!", node instanceof LeaveApplicationTask);

        LeaveApplicationTask task = (LeaveApplicationTask) node;
        assertEquals("foo property", "hello", task.getFoo());
        assertEquals("bar property", 123, task.getBar());
    }
View Full Code Here

TOP

Related Classes of org.apache.agila.example.LeaveApplicationTask

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.