Skip to content

Commit

Permalink
Merge pull request #26 from daryltay415/master
Browse files Browse the repository at this point in the history
Add new test
  • Loading branch information
daryltay415 authored Mar 15, 2024
2 parents 2b089c7 + 4e87fbc commit 1c54ca9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/java/seedu/duke/DukeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

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

class DukeTest {

Expand All @@ -24,6 +25,11 @@ public void deleteTest() {
assertEquals("cant be found", travelActivityList.getDescription("visit museum"));
}

@Test
public void trueTest(){
assertTrue(true);
}
@Test
public void testStringCoversion(){
assertEquals("visit museum", new TravelActivity("visit museum").toString());
}
Expand Down

0 comments on commit 1c54ca9

Please sign in to comment.