Examples of Initialisation


Examples of urban.model.Initialisation

public class UrbanParserTest {
  @Test
  public void testInitialise() throws RecognitionException {
    String expected = "%init: 5 * A(),B()\n";
    UrbanParser parser = new UrbanParser(expected);
    Initialisation init = (Initialisation) parser.line();
    assertEquals(expected, init.toString())
  }
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.