All Downloads are FREE. Search and download functionalities are using the official Maven repository.

autofixture.generators.numbers.ByteAndCharSequenceGenerator Maven / Gradle / Ivy

There is a newer version: 2.1.10
Show newest version
package autofixture.generators.numbers;

import autofixture.interfaces.FixtureContract;
import autofixture.interfaces.InstanceGenerator;
import autofixture.interfaces.InstanceType;

public class ByteAndCharSequenceGenerator implements InstanceGenerator {

  private Byte startingByte = 1;

  @Override
  public  boolean appliesTo(final InstanceType type) {
    return type.isCompatibleWithAnyOf(Byte.class, Character.class);
  }

  @SuppressWarnings("unchecked")
  @Override
  public  T next(final InstanceType typeToken, final FixtureContract fixture) {
    return (T) (startingByte++);
  }

  @Override
  public void setOmittingAutoProperties(final boolean isOn) {
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy