Skip to content

Commit

Permalink
add test for deprecated dict.create for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mh-northlander committed Nov 26, 2024
1 parent a349c54 commit 3aedcef
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ public void tearDown() throws IOException {
}

@Test
@Deprecated
public void create() {
assertThat(dict.create(), isA(Tokenizer.class));
}

@Test
public void createTokenizer() {
assertThat(dict.tokenizer(), isA(Tokenizer.class));
}

Expand Down

0 comments on commit 3aedcef

Please sign in to comment.