Package it.pdor.contabilita.service.parametri.letturatabdelimited.campi

Examples of it.pdor.contabilita.service.parametri.letturatabdelimited.campi.CampoVoce


import junit.framework.TestCase;

public class TracciatoTabDelimitedTest extends TestCase {

  public void testVerificaDelMetodoSuVoceContabilizzazione() throws Exception {
    CampoVoce campoVoce = CampoVoce.createCampoVoce(0, "cod_operazione", "setCodiceOperazione", String.class);
    try {
      TracciatoTabDelimited.verificaSetterDelCampo(campoVoce);
    } catch (Exception e) {
      fail("non dovrebbe lanciare. Ha lanciato e:" + e);
    }
View Full Code Here


    }

  }

  public void testVerificaDelMetodoSuVoceContabilizzazioneTipoErrato() throws Exception {
    CampoVoce campoVoce = CampoVoce.createCampoVoce(0, "cod_operazione", "setCodiceOperazione", int.class);
    try {
      TracciatoTabDelimited.verificaSetterDelCampo(campoVoce);
      fail("dovrebbe lanciare perche' il metodo su voce prende String non int");
    } catch (Exception e) {
      assertEquals(
View Full Code Here

TOP

Related Classes of it.pdor.contabilita.service.parametri.letturatabdelimited.campi.CampoVoce

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.