1 | void testDestIsDir() throws Exception {↵ | | 1 | void testNoEmptySchemaNamespace() throws Exception {↵
|
2 | expectBuildExceptionContaining("testDestIsDir",↵ | | 2 | expectBuildExceptionContaining("test↵
|
3 | "expected failure",↵ | | |
|
4 | WsdlToDotnet.ERROR_DEST_FILE_IS_DIR);↵ | | |
|
5 | }↵ | | |
|
|
6 | /**↵ | | |
|
7 | * A unit test for JUnit↵ | | |
|
8 | */↵ | | |
|
9 | public void testBothSrc↵ | | 3 | NoEmptySchemaNamespace",↵
|
| | | 4 | "empty namespace URI",SchemaValidate.SchemaLocation.ERROR_NO_URI);↵
|
| | | 5 | }↵
|
|
10 | () throws Exception {↵ | | 6 | public void testNoEmptySchemaLocation() throws Exception {↵
|
11 | expectBuildExceptionContaining("testBothSrc",↵ | | 7 | expectBuildExceptionContaining("testNoEmptySchemaLocation",↵
|
12 | "expected failure",↵ | | 8 | "e↵
|
13 | WsdlToDotnet.Schema.ERROR_BOTH_DECLARED);↵ | | |
|
14 | }↵ | | |
|
15 | /**↵ | | |
|
16 | * A unit test for JUnit↵ | | |
|
17 | */↵ | | 9 | mpty schema location",↵
|
| | | 10 | SchemaValidate.SchemaLocation.ERROR_NO_LOCATION);↵
|
| | | 11 | }↵
|
|
18 | public void testSrcIsDir() throws Exception {↵ | | 12 | public void testNoFile() throws Exception {↵
|
19 | expectBuildExceptionContaining("testSrcIsDir",↵ | | 13 | expectBuildExceptionContaining("testNoFile",↵
|
20 | "expected failure",↵ | | 14 | "no file at file attribute",↵
|
21 | WsdlToDotnet.Schema.ERROR_FILE_IS_DIR);↵ | | 15 | SchemaValidate.SchemaLocation.ERROR_NO_FILE);↵
|
22 | | | 16 |
|