uiacceltk/hitchcock/tsrc/alfperfapp/inc/alfperfappframeworktestcase.h
author William Roberts <williamr@symbian.org>
Fri, 12 Nov 2010 11:42:24 +0000
branchRCL_3
changeset 66 8ee165fddeb6
parent 0 15bf7259bb7c
permissions -rw-r--r--
Change HuiStatic.cpp to avoid VFP instructions in the static initialiser - avoids Bug 3937

/*
* Copyright (c) 2008 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:  alfperfapp framework test case class definition.
*
*/


#ifndef C_ALFPERFAPPFRAMEWORKTESTCASE_H
#define C_ALFPERFAPPFRAMEWORKTESTCASE_H

#include <e32base.h>
#include "alfperfapptestcase.h"

/**
 *  CAlfPerfAppFrameworkTestCase class.
 *  This is not truly a performance test case - this is meant
 *  to be used to test the framework.
 */
class CAlfPerfAppFrameworkTestCase : public CAlfPerfAppTestCase
    {
public:
    /**
     * Returns ETrue if test case is supported.
     * @param aCaseId test case id.
     * @return ETrue if supported.
     */
    static TBool IsSupported( TInt aCaseId );

    static CAlfPerfAppFrameworkTestCase* NewL( TInt aCaseId, TInt aSequenceIndex );
    ~CAlfPerfAppFrameworkTestCase();

    // From base class CAlfPerfAppTestCase:
    virtual void SetupL( 
        CAlfEnv& aEnv, 
        const TRect& aVisibleArea, 
        TRequestStatus& aStatus );
    virtual void ExecuteL( TRequestStatus& aStatus );
    virtual void TearDown();   
    virtual void HandleVisibleAreaChange( const TRect& aRect );
    virtual TInt CaseID();
    
private:
    
    CAlfPerfAppFrameworkTestCase( TInt aCaseId, TInt aSequenceIndex );
    void ConstructL();

private:
    /**
     * Test case of which execution this instance was created.
     */ 
    TInt iCaseId;
    
    /**
     * Alf environment.
     * Now owned.
     */
    CAlfEnv* iEnv;

    };

#endif // C_ALFPERFAPPIMAGETESTCASE_H