Package br.com.caelum.stella.gateway

Source Code of br.com.caelum.stella.gateway.TestDescobreEnumPeloCodigo

package br.com.caelum.stella.gateway;

import junit.framework.Assert;

import org.junit.Test;

import br.com.caelum.stella.gateway.bb.BBTipoTransacao;
import br.com.caelum.stella.gateway.core.EnumComCodigoFinder;

public class TestDescobreEnumPeloCodigo {

  @Test
  public void testDescobrirEnumPeloCodigo(){
    Assert.assertEquals(BBTipoTransacao.TODAS_MODALIDADES,new EnumComCodigoFinder().descobreAEnumPeloCodigo(BBTipoTransacao.class,"0"));
  }
}
TOP

Related Classes of br.com.caelum.stella.gateway.TestDescobreEnumPeloCodigo

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.