Skip to content

Commit

Permalink
Merge branch 'master' into jsnimethod
Browse files Browse the repository at this point in the history
  • Loading branch information
Zopsss committed Feb 29, 2024
2 parents a400697 + a801b1e commit 0b311ed
Show file tree
Hide file tree
Showing 6 changed files with 513 additions and 209 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ public void testCompareExpectedTreeWithInput2() throws Exception {
JavaParser.Options.WITH_COMMENTS);
}

@Test
public void testInputFullOfBlockComments() throws Exception {
verifyAst(getPath("InputFullOfBlockCommentsAst.txt"),
getPath("InputFullOfBlockComments.java"),
JavaParser.Options.WITH_COMMENTS);
}

@Test
public void testInputFullOfSinglelineComments() throws Exception {
verifyAst(getPath("InputFullOfSinglelineCommentsAst.txt"),
getPath("InputFullOfSinglelineComments.java"),
JavaParser.Options.WITH_COMMENTS);
}

@Test
public void testToString() {
final Comment comment = new Comment(new String[] {"value"}, 1, 2, 3);
Expand Down
Loading

0 comments on commit 0b311ed

Please sign in to comment.