core/com.nokia.carbide.templatewizard.tests/src/com/nokia/carbide/templatewizard/tests/AllTests.java
author Ed Swartz <ed.swartz@nokia.com>
Mon, 16 Nov 2009 10:11:24 -0600
changeset 591 a8e3469fafa4
parent 0 fb279309251b
permissions -rw-r--r--
Add tests for invalid filename capitalization or missing files in CopyFiles process.

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/

package com.nokia.carbide.templatewizard.tests;

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

public class AllTests {

	public static Test suite() {
		TestSuite suite = new TestSuite(
				"Test for com.nokia.carbide.templatewizard.tests");
		//$JUnit-BEGIN$
		suite.addTestSuite(TemplateLoaderTest.class);
		suite.addTestSuite(ProcessesTest.class);
		suite.addTestSuite(TemplateCopyFilesTest.class);
		//$JUnit-END$
		return suite;
	}

}