summaryrefslogtreecommitdiff
path: root/src/it/it0003-jni/src/test/java/HelloWorldJNITest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/it/it0003-jni/src/test/java/HelloWorldJNITest.java')
-rw-r--r--src/it/it0003-jni/src/test/java/HelloWorldJNITest.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/it/it0003-jni/src/test/java/HelloWorldJNITest.java b/src/it/it0003-jni/src/test/java/HelloWorldJNITest.java
deleted file mode 100644
index 683c321..0000000
--- a/src/it/it0003-jni/src/test/java/HelloWorldJNITest.java
+++ /dev/null
@@ -1,25 +0,0 @@
-import junit.framework.*;
-
-import com.mycompany.mypackage.HelloWorldJNI;
-
-public class HelloWorldJNITest extends TestCase {
-
- public HelloWorldJNITest(String name) {
- super(name);
- }
-
- protected void setUp() throws Exception {
- super.setUp();
- }
-
- protected void tearDown() throws Exception {
- super.tearDown();
- }
-
- public void testNativeHelloWorldJNI() throws Exception {
- HelloWorldJNI app = new HelloWorldJNI();
-
- this.assertEquals( "Hello NAR World!", app.sayHello() );
- }
-}
-