Skip to content

Commit

Permalink
A-JUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
Karan Dev Sapra committed Sep 2, 2019
1 parent 8219d3d commit 808d2dd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Binary file added src/out/test/test/DukeTest.class
Binary file not shown.
11 changes: 11 additions & 0 deletions src/test/java/DukeTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

public class DukeTest {

@Test
public void dummyTest() {
assertEquals(2, 2);
}
}

0 comments on commit 808d2dd

Please sign in to comment.