Skip to content

Commit

Permalink
Create ParserTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Joellimjr committed Mar 15, 2024
1 parent d0e09a9 commit e2ca0e0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/Parser/ParserTest.java

This file was deleted.

22 changes: 22 additions & 0 deletions src/test/java/Parser/ParserTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package Parser;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

public class ParserTest {
private Parser parser;

@BeforeEach
public void setUp() {
parser = new Parser();
}

/*
* Note how the names of the test methods does not follow the normal naming convention.
* That is because our coding standard allows a different naming convention for test methods.
*/

@Test
public void parse_emptyInput_returnsIncorrect() {
}
}

0 comments on commit e2ca0e0

Please sign in to comment.