Package lpa.model.Edge

Examples of lpa.model.Edge.EdgeState


     * Test of setState method, of class Edge.
     */
    public void testSetState() {
        System.out.println("setState");

        EdgeState s = EdgeState.MAYBE;
        Edge instance = new Edge(0, 1, EdgeState.NO);
        instance.setState(s);
        assertEquals("Illegal edge state", s, instance.getState());
    }
View Full Code Here

TOP

Related Classes of lpa.model.Edge.EdgeState

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.