1 19 20 package org.netbeans.api.debugger.jpda; 21 22 import org.netbeans.junit.NbTestCase; 23 24 30 public class ConnectorsTest extends NbTestCase { 31 32 public ConnectorsTest (String s) { 33 super (s); 34 } 35 36 public void testAttach () throws Exception { 37 38 JPDASupport support = JPDASupport.attach ( 39 "org.netbeans.api.debugger.jpda.testapps.EmptyApp" 40 ); 41 support.doFinish (); 42 } 43 44 public void testListen () throws Exception { 45 46 JPDASupport support = JPDASupport.attach ( 47 "org.netbeans.api.debugger.jpda.testapps.EmptyApp" 48 ); 49 support.doFinish (); 50 } 51 } 52 | Popular Tags |