Skip to content

Commit

Permalink
Merge pull request #35 from coraleaf0602/master
Browse files Browse the repository at this point in the history
Restore deleted file and add BookBob testing file
  • Loading branch information
coraleaf0602 authored Oct 8, 2024
2 parents fbc0162 + 5cf6c0b commit 28e5357
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 29 deletions.
29 changes: 0 additions & 29 deletions src/test/java/BookBob/BookBobTest.java

This file was deleted.

12 changes: 12 additions & 0 deletions src/test/java/seedu/bookbob/BookBobTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package seedu.bookbob;

import org.junit.jupiter.api.Test;

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

public class BookBobTest {
@Test
public void sampleTest() {
assertTrue(true);
}
}
12 changes: 12 additions & 0 deletions src/test/java/seedu/duke/DukeTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package seedu.duke;

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

import org.junit.jupiter.api.Test;

class DukeTest {
@Test
public void sampleTest() {
assertTrue(true);
}
}

0 comments on commit 28e5357

Please sign in to comment.