Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9bcdeff4be68cb9f088b47ea43f2eb5356bb815d (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
/*******************************************************************************
 * Copyright (c) 2014, 2016 Ericsson AB 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:
 *     Alvaro Sanchez-Leon (Ericsson) - Initial Implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.gdb.tests;

import org.eclipse.cdt.dsf.mi.service.command.commands.TestMIBreakInsertCommand;
import org.eclipse.cdt.dsf.mi.service.command.commands.TestMICommandConstructCommand;
import org.eclipse.cdt.dsf.mi.service.command.commands.TestMIGDBSetSysroot;
import org.eclipse.cdt.dsf.mi.service.command.output.MIStringHandlerTests;
import org.eclipse.cdt.dsf.mi.service.command.output.MIThreadTests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(Suite.class)

// Add additional test case classes below
@SuiteClasses({MIThreadTests.class, 
    TestMIBreakInsertCommand.class,
    TestMICommandConstructCommand.class,
    TestMIGDBSetSysroot.class,
    LaunchUtilsTest.class,
    MIStringHandlerTests.class,
    ProcStatParserTest.class,
    FilePartsTest.class,
})	
public class AllTests {
	// Often overriding BeforeClass method here
}

Back to the top