blob: 40c13bde27c594da40598dadc6a5bc2ff4f69454 [file] [log] [blame]
package org.eclipse.ui.tests.api;
import junit.framework.TestCase;
import org.eclipse.jdt.junit.util.*;
import org.eclipse.ui.*;
public class IEditorDescriptorTest extends TestCase {
IEditorDescriptor[] fEditors;
public IEditorDescriptorTest( String testName )
{
super( testName );
}
public void setUp()
{
IFileEditorMapping mapping = ( IFileEditorMapping )ArrayUtil.pickRandom(
PlatformUI.getWorkbench().getEditorRegistry().getFileEditorMappings()
);
fEditors = mapping.getEditors();
}
public void testGetId() throws Throwable
{
for( int i = 0; i < fEditors.length; i ++ )
assertNotNull( fEditors[ i ].getId() );
}
public void testGetImageDescriptor() throws Throwable
{
for( int i = 0; i < fEditors.length; i ++ )
assertNotNull( fEditors[ i ].getImageDescriptor() );
}
public void testGetLabel() throws Throwable
{
for( int i = 0; i < fEditors.length; i ++ )
assertNotNull( fEditors[ i ].getLabel() );
}
}