package examples;
/**
* Just calls most of the examples in one go to be used as some sort of
* test before updating core parts of the API to ensure (!) correctness and
* soundness of changes.
*
* And yes, UnitTests should be written :-)
*
* @author Michael D�nzer, University of Z�rich
*/
public class RunAllExamples {
// Run CreateComplexProcess.java
try {
testComplex.run();
} catch(Exception e) {
}
// Run CreateJGrounding.java
try {
testJGround.run();
} catch(Exception e) {
}
// Run CreateSequence.java
try {
} catch(Exception e) {
}
// Run ForEachExample
try {
} catch(Exception e) {
}
// Run MatchMaker
try {
} catch(Exception e) {
}
// Run OWLSExtensions
try {
} catch(Exception e) {
}
// Run PreconditionCheck
try {
} catch(Exception e) {
}
// Run PreconditionUsage
try {
} catch(Exception e) {
}
// Run RunService
try {
} catch(Exception e) {
}
// Run ServiceParameterExample
try {
} catch(Exception e) {
}
// Run Translator
try {
} catch(Exception e) {
}
}
}