Package urban.model

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

Related Classes of urban.model.Initialisation

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.