Skip to content

Package: WsTest

WsTest

nameinstructionbranchcomplexitylinemethod
WsTest()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
main(String[])
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*
2: * Copyright (c) 1997, 2019 Oracle and/or its affiliates. All rights reserved.
3: *
4: * This program and the accompanying materials are made available under the
5: * terms of the Eclipse Distribution License v. 1.0, which is available at
6: * http://www.eclipse.org/org/documents/edl-v10.php.
7: *
8: * SPDX-License-Identifier: BSD-3-Clause
9: */
10:
11: /**
12: * Convenient entry point that allows invocation like <code>"java WsTest ..."</code>,
13: * assuming that everything is in the classpath.
14: *
15: * @author Kohsuke Kawaguchi
16: */
17: public class WsTest {
18: public static void main(String[] args) throws Exception {
19: com.sun.xml.ws.test.Main.main(args);
20: }
21: }