/******************************************************************************* * Copyright (c) 2011 Institute for Software, HSR Hochschule fuer Technik * Rapperswil, University of applied sciences and others * All rights reserved. * * Contributors: * Institute for Software - initial API and implementation ******************************************************************************/ package ch.hsr.ifs.cdttesting.example; import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; import ch.hsr.ifs.cdttesting.example.annotationtest.SomeExampleAnnotationTestsSuite; import ch.hsr.ifs.cdttesting.example.examplecodantest.ExampleCodanCheckerTest; import ch.hsr.ifs.cdttesting.example.examplecodantest.ExampleCodanQuickFixTest; import ch.hsr.ifs.cdttesting.example.examplerefactoringtest.ExampleRefactoringModificationsTest; import ch.hsr.ifs.cdttesting.example.examplerefactoringtest.ExampleRefactoringTest; import ch.hsr.ifs.cdttesting.example.someexampletests.SomeExampleTestsSuite; @RunWith(Suite.class) @SuiteClasses({ //@formatter:off SomeExampleTestsSuite.class, SomeExampleAnnotationTestsSuite.class, ExampleRefactoringTest.class, ExampleRefactoringModificationsTest.class, ExampleCodanCheckerTest.class, ExampleCodanQuickFixTest.class, //@formatter:on }) public class TestSuiteAll { }