1 | void testLineSeparatorCharacter() throws IOException {↵ | | 1 | void testWindowsLineSeparator2() throws IOException {↵
|
2 | try {↵ | | 2 | try {↵
|
3 | super.testLineSeparatorCharacter();↵ | | 3 | super.testWindowsLineSeparator2();↵
|
4 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵ | | 4 | fail("Should trigger when this bug is fixed. {@since 1.2}");↵
|
5 | } catch (AssertionFailedError e){↵ | | 5 | } catch (AssertionFailedError e){↵
|
6 | }↵ | | 6 | }↵
|
7 | }↵ | | 7 | }↵
|
|
8 | public void testStandaloneCR↵ | | 8 | /**↵
|
| | | 9 | * Fails for the same reason as "default" mode in doEndTest2.↵
|
| | | 10 | */↵
|
9 | () throws IOException {↵ | | 11 | public void testUnixLineSeparator() throws IOException {↵
|
10 | try {↵ | | 12 | try {↵
|
11 | super.testStandaloneCR();↵ | | 13 | super.testUnixLineSeparator();↵
|
12 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵ | | 14 | fail("Should trigger once this bug is fixed. {@since 1.2}");↵
|
13 | } catch (AssertionFailedError e){↵ | | 15 | } catch (AssertionFailedError e){↵
|
14 | }↵ | | 16 | }↵
|
15 | | | 17 |
|