1 | void testEscape() {↵ | | 1 | void test↵
|
2 | expectLog(↵ | | |
|
3 | "escape",↵ | | |
|
4 | "a@b or a@b is avalue@bvalue↵ | | 2 | RecreateWithoutUpdateAdditionalFiles() {↵
|
5 | ");↵ | | 3 | testRecreate("test4", "testRecreateWithoutUpdateAdditionalFiles");↵
|
6 | }↵ | | 4 | }↵
|
|
7 | public void testAttributeDescription() {↵ | | 5 | public void test↵
|
8 | expectLog(↵ | | |
|
9 | "attribute.description",↵ | | |
|
10 | ↵ | | 6 | RecreateWithUpdateAdditionalFiles() {↵
|
11 | "description is hello world");↵ | | 7 | testRecreate("test4", "testRecreateWithUpdateAdditionalFiles");↵
|
12 | }↵ | | 8 | }↵
|
|
13 | public void testOverrideDefault() {↵ | | 9 | public void test↵
|
14 | expectLog(↵ | | |
|
15 | "override.default",↵ | | |
|
16 | "value is new↵ | | 10 | RecreateWithoutUpdateNewerFile() {↵
|
| | | 11 | testRecreate("testRecreateNewerFileSetup",↵
|
17 | ");↵ | | 12 | "testRecreateWithoutUpdateNewerFile");↵
|
18 | }↵ | | 13 | }↵
|
|
19 | public void testImplicit() {↵ | | 14 | public void test↵
|
20 | expectLog(↵ | | |
|
21 | "implicit", "Before implicitIn implicitAfter implicit↵ | | 15 | RecreateWithUpdateNewerFile() {↵
|
| | | 16 | testRecreate("testRecreateNewerFileSetup",↵
|
22 | ");↵ | | 17 | "testRecreateWithUpdateNewerFile");↵
|
23 | | | 18 |
|