Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 11b0e62c9d0ed55d2dcf807540ba535da4c90346 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * Copyright (c) 2009, 2011 Ericsson and others.
 * 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:
 *     Ericsson			  - Initial Implementation
 *******************************************************************************/
package org.eclipse.cdt.tests.dsf.gdb.tests;

import org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_6.Suite_6_6;
import org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_7.Suite_6_7;
import org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_8.Suite_6_8;
import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_0.Suite_7_0;
import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_1.Suite_7_1;
import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_2.Suite_7_2;
import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_3.Suite_7_3;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * This class is meant to be empty.  It enables us to define
 * the annotations which list all the different JUnit suites we
 * want to run.  When creating a new suite class, it should be
 * added to the list below.
 * 
 * This suite runs all the other suites.
 */

@RunWith(Suite.class)
@Suite.SuiteClasses({
	Suite_7_3.class,
	Suite_7_2.class,
	Suite_7_1.class,
	Suite_7_0.class,
	Suite_6_8.class,
	Suite_6_7.class,
	Suite_6_6.class,
	/* Add your suite class here */
})

public class AllSuites {}

Back to the top