Package br.com.six2six.fixturefactory.function

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

package br.com.six2six.fixturefactory.function;

import static org.junit.Assert.assertEquals;

import java.util.List;

import org.junit.Test;

import br.com.six2six.fixturefactory.function.impl.EnumFunction;
import br.com.six2six.fixturefactory.model.UserType;

public class EnumFunctionTest {
 
  @Test
  public void shouldGenerateRandomEnumValues() {
    List<UserType> userTypes = new EnumFunction(UserType.class, 2).generateValue();
   
    assertEquals(2, userTypes.size());
  }
}
TOP

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

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.