diff options
| author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-03-25 22:02:54 +0100 | 
|---|---|---|
| committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-03-25 22:02:54 +0100 | 
| commit | fc189a2e69c7468c12621b7d4a3c94343d1a672c (patch) | |
| tree | 89d9e08195bf3c708115ded47a8e588c6e4acbb0 /id/server/legacy-backup/mw-messages-api/src/test/java | |
| parent | 242a22849402a13e585fada9d055a85f1c6d1ee8 (diff) | |
| parent | 1b47a1e5f5787a3d1681cdee8b8bc1ec7a5cd9c9 (diff) | |
| download | moa-id-spss-fc189a2e69c7468c12621b7d4a3c94343d1a672c.tar.gz moa-id-spss-fc189a2e69c7468c12621b7d4a3c94343d1a672c.tar.bz2 moa-id-spss-fc189a2e69c7468c12621b7d4a3c94343d1a672c.zip | |
merge
Diffstat (limited to 'id/server/legacy-backup/mw-messages-api/src/test/java')
| -rw-r--r-- | id/server/legacy-backup/mw-messages-api/src/test/java/eu/stork/mw/core/mwmessagesapi/AppTest.java | 38 | 
1 files changed, 38 insertions, 0 deletions
| diff --git a/id/server/legacy-backup/mw-messages-api/src/test/java/eu/stork/mw/core/mwmessagesapi/AppTest.java b/id/server/legacy-backup/mw-messages-api/src/test/java/eu/stork/mw/core/mwmessagesapi/AppTest.java new file mode 100644 index 000000000..8845aa855 --- /dev/null +++ b/id/server/legacy-backup/mw-messages-api/src/test/java/eu/stork/mw/core/mwmessagesapi/AppTest.java @@ -0,0 +1,38 @@ +package eu.stork.mw.core.mwmessagesapi; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest  +    extends TestCase +{ +    /** +     * Create the test case +     * +     * @param testName name of the test case +     */ +    public AppTest( String testName ) +    { +        super( testName ); +    } + +    /** +     * @return the suite of tests being tested +     */ +    public static Test suite() +    { +        return new TestSuite( AppTest.class ); +    } + +    /** +     * Rigourous Test :-) +     */ +    public void testApp() +    { +        assertTrue( true ); +    } +} | 
