Package org.data2semantics.platform.util

Examples of org.data2semantics.platform.util.WorkflowParser


public class TestAdjacency {

  @Test
  public void testAdjacencyWorkflow() throws Exception {
   
    WorkflowParser parser = new WorkflowParser();
   
    Workflow workflow = parser.parseYAML("src/main/resources/adjacency.yaml");
   
    ResourceSpace resourceSpace = new ResourceSpace();
   
    LocalExecutionProfile localExecutionProfile = new LocalExecutionProfile();
   
View Full Code Here


public class TestWorkflowResourceSpace {

  @Test
  public void testFirstWorkflowWithRS() throws Exception {
    WorkflowParser parser = new WorkflowParser();
   
    Workflow workflowContainer = parser.parseYAML("src/test/resources/multi-modules.yaml");
   
    ResourceSpace resourceSpace = new ResourceSpace();
    LocalExecutionProfile localExecutionProfile = new LocalExecutionProfile();
    Orchestrator platformOrchestrator = new Orchestrator(workflowContainer, localExecutionProfile, resourceSpace);
   
View Full Code Here

public class TestAnnotationWrapper {
  @Test
  public void testAnnotationBasedWrapper() throws Exception {
   
    WorkflowParser parser = new WorkflowParser();
   
    Workflow workflowContainer = parser.parseYAML("src/test/resources/multi-modules.yaml");
   
    //workflowContainer.run();
   
    //workflowContainer.dumpIntermediateResults();
   
View Full Code Here

public class TestKernelExperiment {

  //@Test
  public void testFirstWorkflowWithKernelModules() throws Exception {
   
    WorkflowParser parser = new WorkflowParser();
   
    Workflow workflowContainer = parser.parseYAML("src/main/resources/DMoLD-experiment.yaml");
   
    ResourceSpace resourceSpace = new ResourceSpace();
   
    LocalExecutionProfile localExecutionProfile = new LocalExecutionProfile();
   
View Full Code Here

TOP

Related Classes of org.data2semantics.platform.util.WorkflowParser

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.