Examples of containsUserDatumKey()


Examples of statechum.DeterministicDirectedSparseGraph.DeterministicVertex.containsUserDatumKey()

    Assert.assertTrue(vertex.containsUserDatumKey(JUConstants.ORIGSTATE));
    Assert.assertTrue(vertex.containsUserDatumKey(JUConstants.DEPTH));
   
    vertex.setAccept(true);vertex.setHighlight(false);vertex.setColour(null);vertex.setOrigState(null);vertex.setDepth(JUConstants.intUNKNOWN);
    Assert.assertTrue(vertex.containsUserDatumKey(JUConstants.LABEL));
    Assert.assertTrue(vertex.containsUserDatumKey(JUConstants.ACCEPTED));
    Assert.assertFalse(vertex.containsUserDatumKey(JUConstants.HIGHLIGHT));
    Assert.assertFalse(vertex.containsUserDatumKey(JUConstants.COLOUR));
    Assert.assertFalse(vertex.containsUserDatumKey(JUConstants.ORIGSTATE));
    Assert.assertFalse(vertex.containsUserDatumKey(JUConstants.DEPTH));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.