Initial OpenECOMP MSO commit
[so.git] / adapters / mso-adapter-utils / src / test / java / org / openecomp / mso / openstack / exceptions / MsoOpenstackExceptionESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 08:51:53 GMT 2016
4  */
5
6 package org.openecomp.mso.openstack.exceptions;
7
8 import org.junit.Test;
9 import static org.junit.Assert.*;
10
11 import org.evosuite.runtime.EvoRunner;
12 import org.evosuite.runtime.EvoRunnerParameters;
13 import org.junit.runner.RunWith;
14
15 @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) 
16 public class MsoOpenstackExceptionESTest extends MsoOpenstackExceptionESTestscaffolding {
17
18   @Test(timeout = 4000)
19   public void test0()  throws Throwable  {
20       MsoOpenstackException msoOpenstackException0 = new MsoOpenstackException((-20), "zOT*@]B@O~zuv2", "zOT*@]B@O~zuv2");
21       MsoOpenstackException msoOpenstackException1 = new MsoOpenstackException((-20), "zOT*@]B@O~zuv2", "zOT*@]B@O~zuv2", (Exception) msoOpenstackException0);
22       assertEquals(MsoExceptionCategory.OPENSTACK, msoOpenstackException1.getCategory());
23   }
24
25   @Test(timeout = 4000)
26   public void test1()  throws Throwable  {
27       MsoOpenstackException msoOpenstackException0 = new MsoOpenstackException((-20), "zOT*@]B@O~zuv2", "zOT*@]B@O~zuv2");
28       String string0 = msoOpenstackException0.toString();
29       assertNotNull(string0);
30       assertEquals("-20 zOT*@]B@O~zuv2: zOT*@]B@O~zuv2", string0);
31   }
32 }