sl@0: // Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: sl@0: #include "remotetestbase.h" sl@0: #include "egltest_endpointapiexposure.h" sl@0: #include "egltest_endpoint_engine.h" sl@0: #include "egltest_endpointtearing.h" sl@0: #include "egltest_threadedstress.h" sl@0: #include "egltest_releaseimagegles.h" sl@0: sl@0: sl@0: //RemoteTestStep Factory. sl@0: CRemoteTestStepBase* CRemoteTestEnv::CreateRemoteTestStepL(TTestUid aTestUid) sl@0: { sl@0: switch (aTestUid) sl@0: { sl@0: case ETestUidEndpointApiExposure: return new (ELeave) CEglTest_RemoteTestStep_EndpointApiExposure(); sl@0: case ETestUidEndpointEngine: return new (ELeave) CEgltest_Remote_Engine(); sl@0: case ETestUidEndpointTearing: return new (ELeave) CEglTest_RemoteTestStep_EndpointTearing(); sl@0: case ETestUidEndpointThreadStress: return new (ELeave) CEglTest_RemoteTestStep_EndpointThreadStress(); sl@0: case ETestUidEndpointReleaseImageGles: return new (ELeave) CEglTest_RemoteTestStep_EndpointReleaseImageGles(); sl@0: default: User::Leave(KErrUnknown); sl@0: } sl@0: sl@0: //Stop the warning. sl@0: return NULL; sl@0: } sl@0: