]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.executionflow/src/slc/conf/BasicExecutionFlow.groovy
Introduce validation
[gpl/argeo-slc.git] / sandbox / argeo.slc.executionflow / src / slc / conf / BasicExecutionFlow.groovy
1 import org.argeo.slc.test.*;
2
3 public class BasicExecutionFlow implements org.argeo.slc.executionflow.ExecutionFlow {
4
5 ExecutableTestRun firstSubTest = null;
6 ExecutableTestRun secondSubTest = null;
7
8 void execute(){
9 firstSubTest?.execute();
10 secondSubTest?.execute();
11 }
12 }