egl/egltest/inc/egltest_general.h
changeset 0 5d03bc08d59c
equal deleted inserted replaced
-1:000000000000 0:5d03bc08d59c
       
     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 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @test
       
    19 */
       
    20 
       
    21 #ifndef EGLTEST_GENERAL_H
       
    22 #define EGLTEST_GENERAL_H
       
    23 
       
    24 #include "eglteststep.h"
       
    25 
       
    26 // General high level tests for EGL that do not belong to any particular category
       
    27 _LIT(KDumpStrings, "DumpStrings");
       
    28 NONSHARABLE_CLASS(CEglTest_DumpStrings) : public CEglTestStep
       
    29 	{
       
    30 public:
       
    31 	TVerdict doTestStepL();
       
    32 private:
       
    33 	void DumpString(const TDesC& aField, const TDesC8& aValue);
       
    34 	};
       
    35 
       
    36 _LIT(KQueryString_Extensions, "QueryString_Extensions");
       
    37 NONSHARABLE_CLASS(CEglTest_QueryString_Extensions) : public CEglTestStep
       
    38 	{
       
    39 public:
       
    40 	TVerdict doTestStepL();
       
    41 	};
       
    42 
       
    43 _LIT(KGeneral_Negative_ProcAddress, "General_Negative_ProcAddress");
       
    44 NONSHARABLE_CLASS(CEglTest_General_Negative_ProcAddress) : public CEglTestStep
       
    45     {
       
    46 public:
       
    47     TVerdict doTestStepL();
       
    48     };
       
    49 
       
    50 _LIT(KEglTerminate_Negative, "EglTerminate_Negative");
       
    51 NONSHARABLE_CLASS(CEglTest_EglTerminate_Negative) : public CEglTestStep
       
    52     {
       
    53 public:
       
    54     TVerdict doTestStepL();
       
    55     };
       
    56 
       
    57 #endif // EGLTEST_GENERAL_H