public void test1() throws Exception {
// load model
EObject model = loadModelDirectly("src/org/openiaml/verification/crocopat/tests/BigInfiniteLoop-10.iaml");
VerificationEngine engine = new VerificationEngine();
IStatus result = engine.verify(model, new NullProgressMonitor());
ModelInferenceTestCase.assertStatusIsNotOK(result);
// there should be violations
List<VerificationViolation> violations = engine.getViolations();
assertNotNull("Violations should not be null", violations);