graphicsresourceservices/graphicsresourceimplementation/test/inc/tsggenericmanual.h
changeset 36 01a6848ebfd7
child 103 2717213c588a
equal deleted inserted replaced
0:5d03bc08d59c 36:01a6848ebfd7
       
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Graphics Resource generic non-automated tests
       
    15 
       
    16 #ifndef TSGGENERICMANUAL_H
       
    17 #define TSGGENERICMANUAL_H
       
    18 
       
    19 #include "tgraphicsresourceteststepbase.h"
       
    20 
       
    21 /**
       
    22 Class containing all the tests for SgResource that must be run manually
       
    23 and not part of the automated testing system.
       
    24  */
       
    25 class CTSgGenericManual : public CTSgTestStepBase
       
    26 {
       
    27 public:
       
    28 	CTSgGenericManual(TBool aConformanceTests);
       
    29 	~CTSgGenericManual();
       
    30 	
       
    31 	// tests
       
    32 	void TestStressResourceLeakL();
       
    33 
       
    34 private:
       
    35 	// utility methods
       
    36 	TInt CreateImages(const TSgImageInfo& aInfo, RArray<RSgImage>& aTestImages);
       
    37     void DestroyImages(RArray<RSgImage>& aTestImages);
       
    38     
       
    39 	// From CTSgTestStepBase
       
    40 	virtual TVerdict doTestStepL();
       
    41 };
       
    42 
       
    43 _LIT(KTSgGenericManual,"TSgGenericManual");
       
    44 
       
    45 #endif /*TSGGENERICMANUAL_H*/