Package net.sf.joafip.store.entity.bytecode

Examples of net.sf.joafip.store.entity.bytecode.WithInteger


  public TestForTransform(final String name) throws TestException {
    super(name);
  }

  public void testWithInt() {
    final WithInteger withInteger = new WithInteger();
    withInteger.setField(0);
    assertEquals("", 0, withInteger.getField());
    withInteger.setField(1);
    assertEquals("", 1, withInteger.getField());
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.store.entity.bytecode.WithInteger

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.