Package br.com.six2six.fixturefactory.function

Source Code of br.com.six2six.fixturefactory.function.NumberSequenceFunctionTest

package br.com.six2six.fixturefactory.function;

import static junit.framework.Assert.assertEquals;

import org.junit.Test;

import br.com.six2six.fixturefactory.function.impl.NumberSequence;
import br.com.six2six.fixturefactory.function.impl.SequenceFunction;

public class NumberSequenceFunctionTest {

  @Test
  public void intSequence() {
    SequenceFunction function = new SequenceFunction(new NumberSequence(0, 1));
   
    for (int i=0; i<3; i++) {
      assertEquals("integers should be equal", function.generateValue(), i);
    }
  }
 
  @Test
  public void longSequence() {
    SequenceFunction function = new SequenceFunction(new NumberSequence(1L, 2));
   
    for (int i=1; i<=5; i=i+2) {
      assertEquals("longs should be equal", function.generateValue(), (long) i);
    }
  }
 
  @Test
  public void floatSequence() {
    SequenceFunction function = new SequenceFunction(new NumberSequence(1.2f, 1));
   
    for (int i=1; i<=3; i++) {
      assertEquals("floats should be equal", function.generateValue(), (float) i+(.2F));
    }
  }
 
  @Test
  public void doubleSequence() {
    SequenceFunction function = new SequenceFunction(new NumberSequence(1.23d, 2));
   
    for (int i=1; i<=5; i=i+2) {
      assertEquals("doubles should be equal", function.generateValue(), (double) i+(.23d));
    }
  }
}
TOP

Related Classes of br.com.six2six.fixturefactory.function.NumberSequenceFunctionTest

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.