sl@0: // Copyright (c) 2007-2009 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: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "t_wservintegstepfps.h" sl@0: sl@0: /** sl@0: CT_WServIntegStepFps constructor. sl@0: @return N/A sl@0: @pre None sl@0: @post CT_WServIntegStepFps 1st stage constructor sl@0: */ sl@0: CT_WServIntegStepFps::CT_WServIntegStepFps() sl@0: { sl@0: SetTestStepName(KT_WServIntegStepFps); sl@0: } sl@0: sl@0: /** sl@0: Starts test step sl@0: @internalComponent sl@0: @return TVerdict pass / fail sl@0: @pre N/A sl@0: @post N/A sl@0: */ sl@0: enum TVerdict CT_WServIntegStepFps::doTestStepL() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: PrintTestStepName(); sl@0: sl@0: TInt err=CreateTestProcessL(KWServFpsApp, EPriorityForeground); sl@0: TEST(err==KErrNone); sl@0: sl@0: // Let the test step run for 10 secs before clean up sl@0: User::After(10000000); sl@0: CleanUp(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: return TestStepResult(); sl@0: } sl@0: