project/com.nokia.carbide.cpp.epoc.engine.tests/src/com/nokia/carbide/cpp/epoc/engine/tests/model/AllMMPViewTests.java
author timkelly
Mon, 17 May 2010 09:23:33 -0500
changeset 1362 a5748c5d7b31
parent 0 fb279309251b
permissions -rw-r--r--
removing calls to ISymbianSDK#isEKA1(). For 3.0, EKA1 is not supported so any code returing true from isEKA1() is removed.

/*
* Copyright (c) 2006 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.cpp.epoc.engine.tests.model;

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

public class AllMMPViewTests {

	public static Test suite() {
		TestSuite suite = new TestSuite(
				"Test for com.nokia.carbide.cpp.epoc.engine.tests.model");
		//$JUnit-BEGIN$
		suite.addTestSuite(TestMMPView.class);
		suite.addTestSuite(TestMMPView2.class);
		suite.addTestSuite(TestMMPView3.class);
		suite.addTestSuite(TestMMPView4.class);
		suite.addTestSuite(TestMMPView5.class);
		//$JUnit-END$
		return suite;
	}

}