Package br.com.six2six.fixturefactory.function.impl

Examples of br.com.six2six.fixturefactory.function.impl.NameFunction


    new RandomFunction(Long.class, new Range(start, end)).generateValue();
  }
 
  @Test
  public void randomFunction() {
    Function[] functions = {new NameFunction(), new NameFunction(Gender.MALE), new NameFunction(Gender.FEMALE)};
    Object value = new RandomFunction(functions).generateValue();
    assertNotNull("Generated value can not be null", value);
  }
View Full Code Here

TOP

Related Classes of br.com.six2six.fixturefactory.function.impl.NameFunction

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.