Skip to content

Commit

Permalink
A-JUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
Statspadders committed Jan 26, 2023
1 parent 8cdf5d4 commit 30f73ba
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/test/java/duke/TodoTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package duke;

import org.junit.jupiter.api.Test;

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

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

@Test
public void anotherDummyTest(){
assertEquals(4, 4);
}
}

0 comments on commit 30f73ba

Please sign in to comment.