Examples of WithInteger


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
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.