1 19 20 package org.netbeans.spi.looks; 21 22 import org.openide.nodes.*; 23 import org.netbeans.junit.*; 24 import org.netbeans.spi.looks.*; 25 26 30 public class LookSwitcherLookLookupTest extends NbTestCase { 31 32 private GoldenValue[] gvLeaf1, gvLeaf2, gvLeaf3, gvMid1, gvMid2, gvTop; 33 private SampleRepObject srLeaf1, srLeaf2, srLeaf3, srMid1, srMid2, srTop; 34 private Node node, nodeNonSwitch; 35 36 37 39 public LookSwitcherLookLookupTest(java.lang.String testName) { 40 super(testName); 41 } 42 43 public static void main(java.lang.String [] args) { 44 junit.textui.TestRunner.run(suite()); 45 } 46 47 public static NbTest suite() { 48 NbTestSuite suite = new NbTestSuite( LookSwitcherLookLookupTest.class ); 49 return suite; 50 } 51 52 protected void setUp() throws Exception { 53 54 super.setUp(); 55 109 } 110 111 protected void tearDown() throws Exception { 112 super.tearDown(); 113 } 114 115 116 118 public void testLookup() { 119 fail( "Needs to be modified for the new version" ); 120 123 } 124 125 public void testNonSwitchLookup() { 126 fail( "Needs to be modified for the new version" ); 127 139 } 140 141 143 private void testTree( Node node ) { 144 fail( "Needs to be modified for the new version" ); 145 163 } 164 165 187 188 } 189 190 191 | Popular Tags |