1 | void testParagraphCharacter() throws IOException {↵ | | |
|
2 | try {↵ | | |
|
3 | super.testParagraphCharacter();↵ | | |
|
4 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵ | | |
|
5 | } catch (AssertionFailedError e){↵ | | |
|
6 | }↵ | | |
|
7 | }↵ | | |
|
|
8 | public void testLineSeparatorCharacter() throws IOException {↵ | | 1 | void testLineSeparatorCharacter() throws IOException {↵
|
9 | try {↵ | | 2 | try {↵
|
10 | super.testLineSeparatorCharacter();↵ | | 3 | super.testLineSeparatorCharacter();↵
|
11 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵ | | 4 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵
|
12 | } catch (AssertionFailedError e){↵ | | 5 | } catch (AssertionFailedError e){↵
|
13 | }↵ | | 6 | }↵
|
14 | }↵ | | 7 | }↵
|
|
15 | public void testStandaloneCR() throws IOException {↵ | | 8 | public void testStandaloneCR() throws IOException {↵
|
16 | try {↵ | | 9 | try {↵
|
17 | super.testStandaloneCR();↵ | | 10 | super.testStandaloneCR();↵
|
18 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵ | | 11 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵
|
19 | } catch (AssertionFailedError e){↵ | | 12 | } catch (AssertionFailedError e){↵
|
20 | }↵ | | 13 | }↵
|
21 | | | 14 | }↵
|
|
| | | 15 | public void testWindowsLineSeparator() throws IOException {↵
|
| | | 16 | try {↵
|
| | | 17 | super.testWindowsLineSeparator();↵
|
| | | 18 | fail("Should trigger once fixed. {@since JDK 1.4RC1}");↵
|
| | | 19 | } catch (AssertionFailedError e){↵
|
| | | 20 | }↵
|
| | | 21 |
|