1 19 20 25 26 package org.netbeans.test.java.integrity.GetDeclaringClass; 27 28 import org.netbeans.test.java.Common; 29 import java.lang.reflect.Modifier ; 31 import org.netbeans.junit.*; 32 import org.openide.cookies.SaveCookie; 33 import org.openide.filesystems.FileUtil; 34 35 53 54 55 public class GetDeclaringClass extends org.netbeans.test.java.LogTestCase { 56 57 String name = "GetDeclaringClassTestTarget"; 58 String packageName = "org.netbeans.test.java.testsources"; 59 60 public static void main(java.lang.String [] args) { 61 junit.textui.TestRunner.run(suite()); 62 } 63 64 public GetDeclaringClass() { 65 super(""); 66 } 67 68 public GetDeclaringClass(java.lang.String testName) { 69 super(testName); 70 } 71 72 public static NbTest suite() { 73 return new NbTestSuite(GetDeclaringClass.class); 74 } 75 76 public void testRun() { 77 try { 78 _testIt(); 79 } catch (Exception e) { 80 assertTrue(e.toString(), false); 81 } 82 } 83 84 85 public void _testIt() throws Exception { 86 87 139 } 140 } 141 | Popular Tags |