re base code
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / AppTest.java
  * ============LICENSE_END=========================================================
  */
 
-package org.openecomp.sdc.exception;
+package org.openecomp.sdc.asdctool;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+
 
 /**
- * Exception to be thrown when trying to insert an existing an element that
- * already exists.
- * 
- * @author luc boutier
+ * Unit test for simple App.
  */
-public class AlreadyExistException extends TechnicalException {
-       private static final long serialVersionUID = -6151150122897145634L;
+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);
+       }
 
        /**
-        * Create a new {@link AlreadyExistException} with the cause.
-        * 
-        * @param message
-        *            Message.
+        * Rigourous Test :-)
         */
-       public AlreadyExistException(String message) {
-               super(message);
+       public void testApp() {
+               assertTrue(true);
        }
 }