1 | void tearDown() {↵ | | 1 | void testAddFilter() {↵
|
2 | executeTarget("cleanup");↵ | | 2 | executeTarget("addfilter");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /** make sure tokenfilter exists */↵ | | 4 | ↵
|
5 | public void testTokenfilter() throws IOException {↵ | | 5 | public void testAddSelector() {↵
|
6 | executeTarget("tokenfilter");↵ | | 6 | executeTarget("addselector");↵
|
7 | }↵ | | 7 | }↵
|
|
8 | public void testTrimignore() throws IOException {↵ | | 8 | public void testNestedA() {↵
|
9 | expectLogContaining("trimignore", "Hello-World");↵ | | 9 | expectLogContaining("nested.a", "add A called");↵
|
10 | }↵ | | 10 | }↵
|
|
11 | public void testStringTokenizer() throws IOException {↵ | | 11 | public void test↵
|
12 | expectLogContaining(↵ | | |
|
13 | "stringtokenizer", "#This#is#a#number#of#words#↵ | | 12 | NestedB() {↵
|
14 | ");↵ | | 13 | expectLogContaining("nested.b", "add B called");↵
|
15 | | | 14 |
|