From 34cdfb7b9b87d6af61b75878947302da19134c15 Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 28 May 2020 23:38:48 +0200 Subject: [PATCH] templateAlice... --- .../test/templateAliceBob/TestMain.java | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 test/java/foundation/pEp/jniadapter/test/templateAliceBob/TestMain.java diff --git a/test/java/foundation/pEp/jniadapter/test/templateAliceBob/TestMain.java b/test/java/foundation/pEp/jniadapter/test/templateAliceBob/TestMain.java deleted file mode 100644 index 5866b96..0000000 --- a/test/java/foundation/pEp/jniadapter/test/templateAliceBob/TestMain.java +++ /dev/null @@ -1,21 +0,0 @@ -package foundation.pEp.jniadapter.test.templateAliceBob; -import foundation.pEp.jniadapter.test.framework.*; -import foundation.pEp.jniadapter.test.utils.AdapterBaseTestContext; - - -class TestMain { - public static void main(String[] args) throws Exception { - new TestUnit("Test Template",new AdapterBaseTestContext() , ctx -> { - // do stuff using the context - // Test FAILS on unhandled exception, otherwise SUCCESS - - ctx.alice = ctx.engine.myself(ctx.alice); - - if(ctx.alice.fpr == null) { - throw new RuntimeException(); - } - }).run(); - } -} - -