aboutsummaryrefslogtreecommitdiffstats
path: root/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java')
-rw-r--r--adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java91
1 files changed, 0 insertions, 91 deletions
diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java
deleted file mode 100644
index ac2729ac9e..0000000000
--- a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * This file was automatically generated by EvoSuite
- * Mon Nov 14 09:37:01 GMT 2016
- */
-
-package org.openecomp.mso.adapters.network.async.client;
-
-import org.junit.Test;
-import static org.junit.Assert.*;
-import static org.evosuite.runtime.EvoAssertions.*;
-
-import org.evosuite.runtime.EvoRunner;
-import org.evosuite.runtime.EvoRunnerParameters;
-import org.junit.runner.RunWith;
-
-@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true)
-public class NetworkStatusESTest extends NetworkStatusESTestscaffolding {
-
- @Test(timeout = 4000)
- public void test0() throws Throwable {
- NetworkStatus[] networkStatusArray0 = NetworkStatus.values();
- assertNotNull(networkStatusArray0);
- }
-
- @Test(timeout = 4000)
- public void test2() throws Throwable {
- // Undeclared exception!
- try {
- NetworkStatus.valueOf((String) null);
- fail("Expecting exception: NullPointerException");
-
- } catch(NullPointerException e) {
- //
- // Name is null
- //
- verifyException("java.lang.Enum", e);
- }
- }
-
- @Test(timeout = 4000)
- public void test3() throws Throwable {
- // Undeclared exception!
- try {
- NetworkStatus.valueOf("RjP-NHISY|sp*/M");
- fail("Expecting exception: IllegalArgumentException");
-
- } catch(IllegalArgumentException e) {
- //
- // No enum constant org.openecomp.mso.adapters.network.async.client.NetworkStatus.RjP-NHISY|sp*_/M
- //
- verifyException("java.lang.Enum", e);
- }
- }
-
- @Test(timeout = 4000)
- public void test4() throws Throwable {
- // Undeclared exception!
- try {
- NetworkStatus.fromValue((String) null);
- fail("Expecting exception: NullPointerException");
-
- } catch(NullPointerException e) {
- //
- // Name is null
- //
- verifyException("java.lang.Enum", e);
- }
- }
-
- @Test(timeout = 4000)
- public void test5() throws Throwable {
- // Undeclared exception!
- try {
- NetworkStatus.fromValue("");
- fail("Expecting exception: IllegalArgumentException");
-
- } catch(IllegalArgumentException e) {
- //
- // No enum constant org.openecomp.mso.adapters.network.async.client.NetworkStatus.
- //
- verifyException("java.lang.Enum", e);
- }
- }
-
- @Test(timeout = 4000)
- public void test6() throws Throwable {
- NetworkStatus networkStatus0 = NetworkStatus.ACTIVE;
- String string0 = networkStatus0.value();
- assertEquals("ACTIVE", string0);
- }
-}