blob: 485524567ffe3926393857c94972f295374ea9ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.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();
}
}