Examples of CuttingImport


Examples of no.ugland.utransprod.importing.CuttingImport

  }

  private Cutting importCuttingFile(String cuttingFileName, Order order)
      throws ProTransException {
    CuttingImport cuttingImport = new CuttingImport();
    Cutting cutting = cuttingImport.importCuttingFile(cuttingFileName);
    cutting.setOrder(order);

    return cutting;
  }
View Full Code Here

Examples of no.ugland.utransprod.importing.CuttingImport

import org.junit.experimental.categories.Category;
@Category(FastTests.class)
public class CuttingFileImportTest {
  @Test
  public void testImportCuttingFileWithNullAsFileName() {
    CuttingImport cuttingImport = new CuttingImport();
    try {
      cuttingImport.importCuttingFile(null);
      assertEquals("Skulle v�rt kastet exception", true, false);
    } catch (ProTransException e) {
    }
  }
View Full Code Here

Examples of no.ugland.utransprod.importing.CuttingImport

    }
  }

  @Test
  public void testImportCuttingFile() throws Exception {
    CuttingImport cuttingImport = new CuttingImport();
   
    URL url=this.getClass().getClassLoader().getResource("test_cutting.boq");
   
    Cutting cutting = cuttingImport.importCuttingFile(url.getFile());
    assertNotNull(cutting);
    assertEquals("110", cutting.getVersion());
    assertEquals("JW", cutting.getProSign());
    assertEquals("0950435", cutting.getProId());
    Set<CuttingLine> cuttingLines = cutting.getCuttingLines();
View Full Code Here
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.