Skip to content

Commit

Permalink
test cases to word bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
lopex authored and electrum committed Feb 28, 2019
1 parent 64bcdcb commit 9f12eb9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/org/joni/test/TestU8.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public void test() throws InterruptedException {
x2s("(?i:!\\[CDAT)", "![CDAT", 0, 6);
x2s("(?i:\\!\\[CDAa)", "\\![CDAa", 1, 7);
x2s("(?i:\\!\\[CDAb)", "\\![CDAb", 1, 7);
ns("x.*\\b", "x");
x2s("x.*\\B", "x", 0, 1);
}

public static void main(String[] args) throws Throwable {
Expand Down

0 comments on commit 9f12eb9

Please sign in to comment.