diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2015-10-06 11:27:53 +0300 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2015-10-06 11:27:53 +0300 |
commit | ccd8a0efe59e0d3915e7b4c81964dc07a18bdf0f (patch) | |
tree | b4c8d7d6a8a3ee2228e968c5e31a2e7423d27223 /pf4j/src | |
parent | af4dc9ed4239e9b4e2ef8724a7d30038c485535f (diff) | |
download | pf4j-ccd8a0efe59e0d3915e7b4c81964dc07a18bdf0f.tar.gz pf4j-ccd8a0efe59e0d3915e7b4c81964dc07a18bdf0f.zip |
minor changes
Diffstat (limited to 'pf4j/src')
-rw-r--r-- | pf4j/src/test/java/ro/fortsoft/pf4j/ManifestPluginDescriptorFinderTest.java | 12 | ||||
-rw-r--r-- | pf4j/src/test/java/ro/fortsoft/pf4j/PluginDependencyTest.java | 4 |
2 files changed, 7 insertions, 9 deletions
diff --git a/pf4j/src/test/java/ro/fortsoft/pf4j/ManifestPluginDescriptorFinderTest.java b/pf4j/src/test/java/ro/fortsoft/pf4j/ManifestPluginDescriptorFinderTest.java index 593c126..30a0bbc 100644 --- a/pf4j/src/test/java/ro/fortsoft/pf4j/ManifestPluginDescriptorFinderTest.java +++ b/pf4j/src/test/java/ro/fortsoft/pf4j/ManifestPluginDescriptorFinderTest.java @@ -16,6 +16,11 @@ package ro.fortsoft.pf4j; import com.github.zafarkhaja.semver.Version; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TemporaryFolder; + import java.io.File; import java.io.IOException; import java.nio.charset.Charset; @@ -23,13 +28,8 @@ import java.nio.file.Files; import java.nio.file.Paths; import java.util.Arrays; import java.util.List; -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.TemporaryFolder; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; +import static org.junit.Assert.*; /** * diff --git a/pf4j/src/test/java/ro/fortsoft/pf4j/PluginDependencyTest.java b/pf4j/src/test/java/ro/fortsoft/pf4j/PluginDependencyTest.java index c8bc63b..3b616a1 100644 --- a/pf4j/src/test/java/ro/fortsoft/pf4j/PluginDependencyTest.java +++ b/pf4j/src/test/java/ro/fortsoft/pf4j/PluginDependencyTest.java @@ -17,7 +17,7 @@ package ro.fortsoft.pf4j; import org.junit.Test; -import static org.junit.Assert.assertEquals; +import static org.junit.Assert.*; /** * @@ -44,6 +44,4 @@ public class PluginDependencyTest { assertEquals("PluginDependency [pluginId=test, pluginVersionSupport=1.0]", instance.toString()); } - - } |