diff -r 000000000000 -r 9b3e960ffc8a camerasrv_plat/asynchronous_file_saving_queue_api/tsrc/inc/StifFSQTestTop.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/camerasrv_plat/asynchronous_file_saving_queue_api/tsrc/inc/StifFSQTestTop.h Thu Dec 17 08:51:24 2009 +0200 @@ -0,0 +1,133 @@ +/* +* Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "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: FSQ Test DLL +* +*/ + + +#ifndef DEMOMODULE_H +#define DEMOMODULE_H + +// INCLUDES +#if defined (_MSC_VER) && (_MSC_VER >= 1000) +#pragma once +#endif + +#include +#include "TestFramework/testSuite.h" + +// CONSTANTS +// None + +// MACROS +// None + +// DATA TYPES +// None + +// FUNCTION PROTOTYPES +// None + +// FORWARD DECLARATIONS +class CTestModule; +class TCaseInfo; + +// CLASS DECLARATION + + +// DESCRIPTION +// Demo testmodule class definition. +NONSHARABLE_CLASS( CTestModule ) + :public CTestModuleBase + { + public: // Enumerations + // None + + private: // Enumerations + // None + + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + static CTestModule* NewL(); + + /** + * Destructor. + */ + ~CTestModule(); + + public: // New functions + // None + + public: // Functions from base classes + + /** + * Test cases are inquired from the Test Module by calling GetTestCases. + * Test cases are appended to RPointerArray& aTestCases + * that is a list consisting of several TTestCaseInfo objects. + */ + TInt GetTestCasesL( const TFileName& aConfigFile, + RPointerArray& aTestCases ); + /** + * RunTestCase is used to run an individual test case. + */ + TInt RunTestCaseL( const TInt aCaseNumber, + const TFileName& aConfig, + TTestResult& aResult ); + + protected: // New functions + // None + + protected: // Functions from base classes + // None + + private: + + /** + * C++ default constructor. + */ + CTestModule(); + + /** + * Symbian OS constructor. + */ + void ConstructL(); + + /** + * Function returning test case name and pointer to test case function + */ + const TCaseInfo Case ( const TInt aCaseNumber ) const; + + void SetAllocFailureSimulation( RHeap::TAllocFail aAllocFailureType, TInt aAllocFailureRate ); + void AllocFailureSimulation ( TBool aSwitchedOn ); + + void RunTestCaseInOOMLoopL( const TInt aCaseNumber, TTestResult& aResult ); + + private: // Data + + CTestSuite *iTestSuite ; + CActiveScheduler* iScheduler; + RHeap::TAllocFail iAllocFailureType; + TInt iAllocFailureRate; + TInt iCurrentAllocFailureRate; + }; + + + + +#endif // DEMOMODULE_H + +// End of File