1 19 20 package org.netbeans.core.actions; 21 22 import junit.framework.*; 23 import org.openide.util.HelpCtx; 24 import org.openide.util.NbBundle; 25 import org.openide.util.actions.CallbackSystemAction; 26 27 31 public class ActionMapKeysTest extends TestCase { 32 33 public ActionMapKeysTest (String testName) { 34 super (testName); 35 } 36 37 public void testJumpNextAction () { 38 JumpNextAction a = JumpNextAction.get(JumpNextAction.class); 39 assertEquals ("jumpNext", a.getActionMapKey ()); 40 } 41 42 public void testJumpPrevAction () { 43 JumpPrevAction a = JumpPrevAction.get(JumpPrevAction.class); 44 assertEquals ("jumpPrev", a.getActionMapKey ()); 45 } 46 47 } 48 | Popular Tags |