/*
  * 2 covered goals:
  * 1 com.sap.netweaver.porta.core.DebugSessionInfo.getKey()Ljava/lang/String;: root-Branch
  * 2 com.sap.netweaver.porta.core.DebugSessionInfo.<init>(Ljava/lang/String;I)V: root-Branch
  */
 @Test
 public void test1() throws Throwable {
   DebugSessionInfo debugSessionInfo0 = new DebugSessionInfo("", 0);
   String string0 = debugSessionInfo0.getKey();
   assertNotNull(string0);
   assertEquals(0, debugSessionInfo0.getPort());
 }
 /*
  * 2 covered goals:
  * 1 com.sap.netweaver.porta.core.DebugSessionInfo.getPort()I: root-Branch
  * 2 com.sap.netweaver.porta.core.DebugSessionInfo.<init>(Ljava/lang/String;I)V: root-Branch
  */
 @Test
 public void test0() throws Throwable {
   DebugSessionInfo debugSessionInfo0 = new DebugSessionInfo("", 0);
   int int0 = debugSessionInfo0.getPort();
   assertEquals(0, int0);
 }