Package net.buffalo.protocal

Examples of net.buffalo.protocal.People


import net.buffalo.protocal.People;
import net.buffalo.protocal.acceptance.Calculator;

public class ClassUtilTest extends TestCase {
  public void testShouldSetFieldValue() throws Exception {
    People p = new People();
    People p2 = new People();
    ClassUtil.setFieldValue(p, "name", "Michael Chen");
    ClassUtil.setFieldValue(p, "friend", p2);
    assertEquals("Michael Chen", p.getName());
    assertEquals(p2, p.getFriend());
  }
View Full Code Here

TOP

Related Classes of net.buffalo.protocal.People

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.