From efdb99f8cecc4afb592afad79c761081d5d5cf22 Mon Sep 17 00:00:00 2001 From: lee <4766465@qq.com> Date: Wed, 18 Dec 2024 13:27:00 +0800 Subject: [PATCH] init --- system-im-client/src/test/java/com/mita/im/client/AppTest.java | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/system-im-client/src/test/java/com/mita/im/client/AppTest.java b/system-im-client/src/test/java/com/mita/im/client/AppTest.java new file mode 100644 index 0000000..bcaee9b --- /dev/null +++ b/system-im-client/src/test/java/com/mita/im/client/AppTest.java @@ -0,0 +1,38 @@ +package com.mita.im.client; + +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 ); + } +} -- Gitblit v1.9.3