appfw/apparchitecture/tef/T_EnvSlots/T_EnvSlots.H
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 15:24:25 +0300
branchRCL_3
changeset 19 924385140d98
parent 0 2e3d3ce01487
child 20 c2c61fdca848
permissions -rw-r--r--
Revision: 201033 Kit: 201035

// Copyright (c) 2005-2010 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:
// Header File for the test application for environment slots verification
// Declares literals and macros used in T_EnvSlots.CPP .\n
// 
//

/**
 @file
 @internalComponent - Internal Symbian test code 
*/

#ifndef __T_ENVSLOTS_H__
#define __T_ENVSLOTS_H__

#include <e32std.h>
#include <e32base.h>
#include <e32uid.h>
#include <e32cmn.h>
#include <f32file.h>
#include <e32test.h>
#include <apacmdln.h>
#include <apgcli.h>
#include "apparctestserver.h"
#include "appfwk_test_appui.h"


//!  A Environment slots reader test class. 

/**
  Test Environment slots of the process.
*/
	
_LIT(KTLogFileAccess,"TestLogFile");
_LIT(KFilePath,"c:\\logs\\TestExecute\\EnvSlots.txt");
_LIT(KTAppName,"C:\\sys\\bin\\T_EnvSlots.exe");
_LIT(KTDocName,"C:\\System\\data\\temp.test");
_LIT(KTEnvSlots,"T_EnvSlots");

_LIT8(KTPass,"TestPass");
_LIT8(KTFail,"TestFail");
_LIT8(KTApp,"ApplName");
_LIT8(KTDoc,"DocuName");
_LIT8(KTCommand,"ECommand");

const TInt PASS = 1;
const TInt FAIL = 0;

#define TESTCOND(a,b) if(a != b)  \
{\
	testResult = FAIL;\
}\

const TInt KMaxFilePath=50;
#endif //__T_ENVSLOTS_H__