diff --git a/pom.xml b/pom.xml index 31c4b17b..5cdcc29a 100644 --- a/pom.xml +++ b/pom.xml @@ -79,6 +79,12 @@ mockito-core test + + net.sf.jopt-simple + jopt-simple + 5.0.4 + compile + diff --git a/src/test/java/org/jenkinsci/plugins/badge/PluginImplTest.java b/src/test/java/org/jenkinsci/plugins/badge/PluginImplTest.java new file mode 100644 index 00000000..1dac9e06 --- /dev/null +++ b/src/test/java/org/jenkinsci/plugins/badge/PluginImplTest.java @@ -0,0 +1,15 @@ +package org.jenkinsci.plugins.badge; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class PluginImplTest { + + @Test + void testStart() { + String expectation = "Success"; + assertEquals(expectation, "Success"); + + } +} \ No newline at end of file