Package com.papercut.silken.test

Examples of com.papercut.silken.test.SimplePojo


    private ComplexPojo complexPojo;
   
    @Before
    public void setup() {
       
        simplePojo = new SimplePojo();
        simplePojo.setBoolValue(false);
        simplePojo.setStringValue("simple-string");
        simplePojo.setIntValue(12345);
       
        complexPojo = new ComplexPojo();
View Full Code Here


    }
   
  @Test
  public void toSoyCompatibleMap_simplePojo_createsMap() {
    // arrange
    SimplePojo pojo = new SimplePojo();
   
    // act
    Map<String, ?> resultMap = Utils.toSoyCompatibleMap(pojo);
   
    // assert
View Full Code Here

TOP

Related Classes of com.papercut.silken.test.SimplePojo

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.