blob: 774252fca0130e9302df856b7e7a7421af2ea5fd [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.wst.xml.vex.ui.tests;
import org.eclipse.wst.xml.vex.ui.internal.Icon;
import junit.framework.TestCase;
public class IconTest extends TestCase {
public void testAllImagesExists() throws Exception {
for (Icon vexImage : Icon.values()) {
assertNotNull(Icon.get(vexImage));
}
}
}