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