Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekmaity committed Oct 1, 2023
1 parent d111338 commit f6a5261
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>5.0.4</version>
<scope>compile</scope>
</dependency>
</dependencies>

<repositories>
Expand Down
15 changes: 15 additions & 0 deletions src/test/java/org/jenkinsci/plugins/badge/PluginImplTest.java
Original file line number Diff line number Diff line change
@@ -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");

}
}

0 comments on commit f6a5261

Please sign in to comment.