Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 450ecac149ad3f1b2ed08cc013a7cd98004338a2 (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
45
46
47
/*******************************************************************************
 * Copyright (c) 2000, 2008 QNX Software Systems 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:
 *     QNX Software Systems - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.debug.core.tests;

import junit.framework.Test;
import junit.framework.TestSuite;


/**
 *
 * AllDedbugTests.java
 * This is the main entry point for running this suite of JUnit tests
 * for all tests within the package "org.eclipse.cdt.debug.core"
 * 
 * @author Judy N. Green
 * @since Jul 19, 2002
 */
public class AllDebugTests {
	
    public static void main(String[] args) {
        junit.textui.TestRunner.run(suite());
    }

    public static Test suite() {
        TestSuite suite = new TestSuite();

        // Just add more test cases here as you create them for 
        // each class being tested
        
        suite.addTest(DebugTests.suite());
        suite.addTest(BreakpointTests.suite());
        suite.addTest(LocationTests.suite());
        suite.addTest(EventBreakpointTests.suite());
        return suite;
        
        
    }
} // End of AllDebugTests.java

Back to the top