Assert.assertNotNull(testManager);
File opstring = new File("src/test/opstring/artifactNotification2.groovy");
Assert.assertTrue(opstring.exists());
OperationalStringManager mgr = testManager.deploy(opstring);
testManager.waitForDeployment(mgr);
TestService test = (TestService)testManager.waitForService("Test");
thrown = null;
Gnostic g = (Gnostic)testManager.waitForService(Gnostic.class);
Util.waitForRule(g, "CounterNotification");
for(int i=0; i<15; i++) {
try {
test.sendNotify();
Util.sleep(1000);
} catch (Exception e) {
e.printStackTrace();
thrown = e;
}