blob: b66e0e1ce4584a2c71535e2bfa68ab5bf3f35a2f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.openide.actions;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.netbeans.junit.NbTestCase;
import org.openide.util.HelpCtx;
/**
* A JUnit test for FindAction.
*
* @author Manfred Riem
* @version $Revision$
*/
public class FindActionTest extends NbTestCase {
/**
* Stores our single instance.
*/
private static FindAction instance = new FindAction();
/**
* Constructor.
*
* @param testName the name of the test.
*/
public FindActionTest(String testName) {
super(testName);
}
/**
* Setup for testing.
*/
protected void setUp() throws Exception {
}
/**
* Cleanup after testing
*/
protected void tearDown() throws Exception {
}
/**
* Suite method.
*/
public static Test suite() {
TestSuite suite = new TestSuite(FindActionTest.class);
return suite;
}
/**
* Test getName method.
*/
public void testGetName() {
String expected = "&Find...";
String result = instance.getName();
assertEquals(expected, result);
}
/**
* Test getHelpCtx method.
*/
public void testGetHelpCtx() {
HelpCtx expected = new HelpCtx(FindAction.class);;
HelpCtx result = instance.getHelpCtx();
assertEquals(expected, result);
}
/**
* Test iconResource method.
*/
public void testIconResource() {
String expected = null; // #111508: "org/openide/resources/actions/find.gif";
String result = instance.iconResource();
assertEquals(expected, result);
}
/**
* Test of asynchronous method, of class org.openide.actions.FindAction.
*/
public void testAsynchronous() {
boolean expected = false;
boolean result = instance.asynchronous();
assertEquals(expected, result);
}
}