telephonyserverplugins/common_tsy/test/integration/inc/ttsytesthelperbase.h
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 // Copyright (c) 2007-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 #ifndef TSYTESTHELPERS_H_
       
    17 #define TSYTESTHELPERS_H_
       
    18 
       
    19 #include <etelmm.h>
       
    20 #include <etelqos.h>
       
    21 #include "cctsyintegrationtestsuitebase.h"
       
    22 #include "comparisonfunctions.h"
       
    23 
       
    24 // Forward declarations
       
    25 class TEtelRequestBase;
       
    26 
       
    27 class TTsyTestHelperBase
       
    28 	{
       
    29 public:
       
    30 	TTsyTestHelperBase(CCTSYIntegrationTestSuiteStepBase& aTestStep);
       
    31 
       
    32 protected:
       
    33 
       
    34 	inline CTestExecuteLogger& Logger() {return iTestStep.Logger(); };
       
    35 	inline void SetAssertResult() { iTestStep.SetAssertResult(); }
       
    36 	inline void SetCheckResultL() { iTestStep.SetCheckResultL(); }
       
    37 	
       
    38 protected:
       
    39 
       
    40 	CCTSYIntegrationTestSuiteStepBase& iTestStep;
       
    41 
       
    42 	}; // class TTsyTestHelperBase
       
    43 
       
    44 #endif // TSYTESTHELPERS_H_
       
    45