Package ca.nengo.model.impl.MockConfigurable

Examples of ca.nengo.model.impl.MockConfigurable.MockChildConfigurable


    MockConfigurable c = new MockConfigurable(template);
    assertEquals("custom", c.getImmutableField());
  }
 
  public void testChild() throws StructuralException {
    MockChildConfigurable c = new MockChildConfigurable(MockChildConfigurable.getConstructionTemplate());
    assertEquals("foo", c.getImmutableField());
   
    ((SingleValuedProperty) c.getConfiguration().getProperty("field")).setValue("foo");
    assertEquals("foo", c.getField());
  }
View Full Code Here

TOP

Related Classes of ca.nengo.model.impl.MockConfigurable.MockChildConfigurable

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.