01: /*******************************************************************************
02: * Copyright (c) 2007 IBM Corporation and others. All rights reserved. This
03: * program and the accompanying materials are made available under the terms of
04: * the Eclipse Public License v1.0 which accompanies this distribution, and is
05: * available at http://www.eclipse.org/legal/epl-v10.html
06: *
07: * Contributors: IBM Corporation - initial API and implementation
08: ******************************************************************************/package org.eclipse.pde.build.tests;
09:
10: import junit.framework.Test;
11: import junit.framework.TestSuite;
12:
13: import org.eclipse.pde.build.internal.tests.*;
14:
15: public class PDEBuildTestSuite {
16:
17: public static Test suite() {
18: TestSuite suite = new TestSuite(
19: "Test Suite for org.eclipse.pde.build"); //$NON-NLS-1$
20: suite.addTestSuite(SourceTests.class);
21: suite.addTestSuite(FetchTests.class);
22: suite.addTestSuite(ScriptGenerationTests.class);
23: suite.addTestSuite(ProductTests.class);
24: return suite;
25: }
26:
27: }
|