-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.txt
executable file
·31 lines (31 loc) · 1.94 KB
/
tests.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@Test public void test1() { compareMatchExecution("a"); }
@Test public void test2() { compareMatchExecution("b"); }
@Test public void test3() { compareMatchExecution("c"); }
@Test public void test4() { compareMatchExecution("aa"); }
@Test public void test5() { compareMatchExecution("bb"); }
@Test public void test6() { compareMatchExecution("lorem"); }
@Test public void test7() { compareMatchExecution("(lorem)"); }
@Test public void test8() { compareMatchExecution("(lo)"); }
@Test public void test9() { compareMatchExecution("lo*"); }
@Test public void test10() { compareMatchExecution("lo.*"); }
@Test public void test11() { compareMatchExecution("[a-z]"); }
@Test public void test12() { compareMatchExecution("[a-z][a-z]"); }
@Test public void test13() { compareMatchExecution("[a-zA-Z0-9]"); }
@Test public void test14() { compareMatchExecution("[a-zA-Z0-9][0-9]"); }
@Test public void test15() { compareMatchExecution("[a-zA-Z0-9][a-z]"); }
@Test public void test16() { compareMatchExecution("[a-z]*"); }
@Test public void test17() { compareMatchExecution("[a-z]+"); }
@Test public void test18() { compareMatchExecution("[a-zA-Z0-9]+"); }
@Test public void test19() { compareMatchExecution("[^abc]+"); }
@Test public void test20() { compareMatchExecution("[[-z]"); }
@Test public void test21() { compareMatchExecution("[A-Z][a-z]+"); }
@Test public void test22() { compareMatchExecution("B*"); }
@Test public void test23() { compareMatchExecution("(aa|b)+"); }
@Test public void test24() { compareMatchExecution("(aa(b+)*)"); }
@Test public void test25() { compareMatchExecution("(a)(a)*.+"); }
@Test public void test26() { compareMatchExecution("."); }
@Test public void test27() { compareMatchExecution(".+"); }
@Test public void test28() { compareMatchExecution(".*"); }
@Test public void test29() { compareMatchExecution("([a-z]|[A-Z])|0+"); }
@Test public void test30() { compareMatchExecution("[0-9]"); }
@Test public void test31() { compareMatchExecution("[0-9]*lorem"); }