You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2016/05/02 18:12:17 UTC

[38/60] incubator-trafodion git commit: including the missing files in previous commit

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/500d2076/core/conn/jdbcT4/src/test/java/org/trafodion/jdbc/t4/AppTest.java
----------------------------------------------------------------------
diff --git a/core/conn/jdbcT4/src/test/java/org/trafodion/jdbc/t4/AppTest.java b/core/conn/jdbcT4/src/test/java/org/trafodion/jdbc/t4/AppTest.java
new file mode 100644
index 0000000..0a07e0b
--- /dev/null
+++ b/core/conn/jdbcT4/src/test/java/org/trafodion/jdbc/t4/AppTest.java
@@ -0,0 +1,38 @@
+package org.trafodion.jdbc.t4;
+
+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 );
+    }
+}