blob: 52fc0867f5c09678f68ef25e1621267407734557 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2004, 2007 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.ats.core.validator;
import org.eclipse.osee.framework.jdk.core.util.OseeProperties;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
AtsCoreXWidgetValidatorProviderTest.class,
AtsXWidgetValidatorTest.class,
AtsXTextValidatorTest.class,
AtsXNumberValidatorTest.class,
AtsXDateValidatorTest.class,
AtsXListValidatorTest.class,
AtsXComboBooleanValidatorTest.class,
AtsXComboValidatorTest.class,
AtsXWidgetValidateManagerTest.class,
WidgetStatusTest.class})
/**
* This test suite contains tests that can be run as stand-alone JUnit tests (JT)
*
* @author Donald G. Dunne
*/
public class AtsCore_Validator_JT_Suite {
@BeforeClass
public static void setUp() throws Exception {
OseeProperties.setIsInTest(true);
System.out.println("\n\nBegin " + AtsCore_Validator_JT_Suite.class.getSimpleName());
}
@AfterClass
public static void tearDown() throws Exception {
System.out.println("End " + AtsCore_Validator_JT_Suite.class.getSimpleName());
}
}