Package br.com.six2six.fixturefactory.function

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


  public Function random(Class<?> clazz, Range range) {
    return new RandomFunction(clazz, range);
  }

  public Function name() {
    return new NameFunction();
  }
View Full Code Here


  public Function name() {
    return new NameFunction();
  }

  public Function name(Gender gender) {
    return new NameFunction(gender);
  }
View Full Code Here

  public Function name(Gender gender) {
    return new NameFunction(gender);
  }

  public Function firstName() {
    return new NameFunction(FIRST);
  }
View Full Code Here

  public Function firstName() {
    return new NameFunction(FIRST);
  }

  public Function firstName(Gender gender) {
    return new NameFunction(FIRST, gender);
  }
View Full Code Here

  public Function firstName(Gender gender) {
    return new NameFunction(FIRST, gender);
  }
 
  public Function lastName() {
    return new NameFunction(LAST);
  }
View Full Code Here

  public Function random(Class<?> clazz, Range range) {
    return new RandomFunction(clazz, range);
  }

  public Function name() {
    return new NameFunction();
  }
View Full Code Here

  public Function name() {
    return new NameFunction();
  }

  public Function name(Gender gender) {
    return new NameFunction(gender);
  }
View Full Code Here

  public Function name(Gender gender) {
    return new NameFunction(gender);
  }

  public Function firstName() {
    return new NameFunction(FIRST);
  }
View Full Code Here

  public Function firstName() {
    return new NameFunction(FIRST);
  }

  public Function firstName(Gender gender) {
    return new NameFunction(FIRST, gender);
  }
View Full Code Here

  public Function firstName(Gender gender) {
    return new NameFunction(FIRST, gender);
  }
 
  public Function lastName() {
    return new NameFunction(LAST);
  }
View Full Code Here

TOP

Related Classes of br.com.six2six.fixturefactory.function.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.