This is an automated email from the ASF dual-hosted git repository. cdutz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git
commit 3d3a7565e3eab7df540f6a3e5e53413e2a11de19 Author: Christofer Dutz <[email protected]> AuthorDate: Wed Feb 28 11:27:25 2018 +0100 Added some JavaDocs to stop the javadoc generation from complaining --- .../org/apache/plc4x/java/PlcDriverManagerTest.java | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/plc4j/core/src/test/java/org/apache/plc4x/java/PlcDriverManagerTest.java b/plc4j/core/src/test/java/org/apache/plc4x/java/PlcDriverManagerTest.java index 7897b76..5897b91 100644 --- a/plc4j/core/src/test/java/org/apache/plc4x/java/PlcDriverManagerTest.java +++ b/plc4j/core/src/test/java/org/apache/plc4x/java/PlcDriverManagerTest.java @@ -41,6 +41,8 @@ public class PlcDriverManagerTest { /** * Tries to get the mock plc driver which is part of this testsuite. + * + * @throws PlcException something went wrong */ @Test @Category(FastTests.class) @@ -53,6 +55,8 @@ public class PlcDriverManagerTest { /** * Tries to get the mock plc driver with authentication which is part of this testsuite. + * + * @throws PlcException something went wrong */ @Test @Category(FastTests.class) @@ -68,7 +72,9 @@ public class PlcDriverManagerTest { } /** - * In this test case a driver is requested which is not registered with the {@link PlcDriverManager}. + * In this test case a driver is requested which is not registered with the PlcDriverManager. + * + * @throws PlcConnectionException something went wrong */ @Test(expected = PlcConnectionException.class) @Category(FastTests.class) @@ -77,7 +83,9 @@ public class PlcDriverManagerTest { } /** - * In this test case a driver is requested which is not registered with the {@link PlcDriverManager}. + * In this test case a driver is requested which is not registered with the PlcDriverManager. + * + * @throws PlcConnectionException something went wrong */ @Test(expected = PlcConnectionException.class) @Category(FastTests.class) @@ -86,9 +94,12 @@ public class PlcDriverManagerTest { } /** - * In this test the {@link PlcDriverManager} will be configured with a service list that + * In this test the PlcDriverManager will be configured with a service list that * contains multiple implementation instances of the same protocol. This should result in * an error. + * + * @throws MalformedURLException something went wrong + * @throws PlcConnectionException something went wrong */ @Test(expected = IllegalStateException.class) @Category(FastTests.class) -- To stop receiving notification emails like this one, please contact [email protected].
