diff options
author | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2009-10-13 21:40:10 +0200 |
---|---|---|
committer | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2009-10-13 21:40:10 +0200 |
commit | 5f44ac3e543e24fd9efc5025830ebc671b85f8dc (patch) | |
tree | 077934bd1870a32c4a7835f4b4ecec371d1d89ed /src/it/it0004-java-dep-jni | |
parent | 475b6a89e340cf2997ce1b5953939078e684e917 (diff) | |
download | maven-nar-plugin-5f44ac3e543e24fd9efc5025830ebc671b85f8dc.tar.gz maven-nar-plugin-5f44ac3e543e24fd9efc5025830ebc671b85f8dc.tar.bz2 maven-nar-plugin-5f44ac3e543e24fd9efc5025830ebc671b85f8dc.tar.xz maven-nar-plugin-5f44ac3e543e24fd9efc5025830ebc671b85f8dc.zip |
Fixed NAR-59
Diffstat (limited to 'src/it/it0004-java-dep-jni')
-rw-r--r-- | src/it/it0004-java-dep-jni/src/test/java/it0004/test/HelloWorldJavaDepJNITest.java | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/src/it/it0004-java-dep-jni/src/test/java/it0004/test/HelloWorldJavaDepJNITest.java b/src/it/it0004-java-dep-jni/src/test/java/it0004/test/HelloWorldJavaDepJNITest.java index 7eda5ec..00686d6 100644 --- a/src/it/it0004-java-dep-jni/src/test/java/it0004/test/HelloWorldJavaDepJNITest.java +++ b/src/it/it0004-java-dep-jni/src/test/java/it0004/test/HelloWorldJavaDepJNITest.java @@ -19,31 +19,13 @@ package it0004.test; * under the License. */ -import junit.framework.*; - import it0003.HelloWorldJNI; +import org.junit.Assert; +import org.junit.Test; public class HelloWorldJavaDepJNITest - extends TestCase { - - public HelloWorldJavaDepJNITest( String name ) - { - super( name ); - } - - protected void setUp() - throws Exception - { - super.setUp(); - } - - protected void tearDown() - throws Exception - { - super.tearDown(); - } - + @Test public void testNativeHelloWorldJavaDepJNI() throws Exception { |