Examples of DoubleSimpleGen


Examples of ar.edu.unlp.yaqc4j.generators.java.lang.DoubleSimpleGen

   * test for lists.
   */
  @Test
  @Configuration(tests=NUM_RUNS)
  public void testListWithArgument() {
    ListGen<Double> listGen = new ListGen<Double>(new DoubleSimpleGen());
    List<Double> list = listGen.arbitrary(Arbitrary.defaultDistribution(),
        5, 10);
    assertTrue(list.size() < 11 && list.size() > 4);
  }
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.