blob: c382ba91802464c20000fe7b2b08573d8bdea057 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Holger Voormann and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Holger Voormann - initial API and implementation
*******************************************************************************/
package org.eclipse.vex.ui.tests;
import junit.framework.TestCase;
import org.eclipse.vex.ui.internal.Icon;
public class IconTest extends TestCase {
public void testWhetherAllIconsExist() throws Exception {
for (final Icon icon : Icon.values()) {
assertNotNull(Icon.get(icon));
}
}
}