blob: 04802504cbac4e352c92496ea1acfac396e5a1cf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Mia-Software.
* 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:
* Gregoire DUPE (Mia-Software) - initial API and implementation
*******************************************************************************/
package org.eclipse.modisco.java.browser.customization.test;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* @generated
*/
public class TestsJunit3 extends TestCase {
/**
* @generated
*/
public static Test suite() {
TestSuite suite = new TestSuite(
"Test for test"); //$NON-NLS-1$
suite.addTestSuite(TestsJunit3.class);
return suite;
}
/**
* @generated
*/
public void testjavaTypesCustomizationFacetTest() throws Exception {
Tests test = new Tests();
test.javaTypesCustomizationFacetTest();
}
}