blob: 010f429780c92546f1a475bfe08ed3d034f60944 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2018 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.commit.operations;
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({CommitOverrideOperationsImplTest.class})
/**
* @author Donald G. Dunne
*/
public class AtsCore_Commit_JT_Suite {
@BeforeClass
public static void setUp() throws Exception {
OseeProperties.setIsInTest(true);
System.out.println("\n\nBegin " + AtsCore_Commit_JT_Suite.class.getSimpleName());
}
@AfterClass
public static void tearDown() throws Exception {
System.out.println("End " + AtsCore_Commit_JT_Suite.class.getSimpleName());
}
}