24
|
1 |
// Copyright (c) 2008-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 |
// ctsyphonebookonfunegative.h
|
|
15 |
//
|
|
16 |
|
|
17 |
/**
|
|
18 |
@file
|
|
19 |
@internalAll
|
|
20 |
*/
|
|
21 |
|
|
22 |
#ifndef CTSYPHONEBOOKONFUNEGATIVE_H_
|
|
23 |
#define CTSYPHONEBOOKONFUNEGATIVE_H_
|
|
24 |
|
|
25 |
#include "cctsyphonebookfu.h"
|
|
26 |
|
|
27 |
class CCTsyPhonebookOnFUNegative : public CCTsyPhonebookFU
|
|
28 |
{
|
|
29 |
public:
|
|
30 |
// Create a suite of all the tests
|
|
31 |
static CTestSuite* CreateSuiteL(const TDesC& aName);
|
|
32 |
|
|
33 |
public:
|
|
34 |
void TestGetInfoIpcL();
|
|
35 |
void TestWriteIpcL();
|
|
36 |
void TestReadIpcL();
|
|
37 |
void TestDeleteEntryIpcL();
|
|
38 |
void TestWriteEntryIpcL();
|
|
39 |
void TestDeleteAllIpcL();
|
|
40 |
void TestReadEntryIpcL();
|
|
41 |
void TestReadSizeIpcL();
|
|
42 |
void TestWriteSizeIpcL();
|
|
43 |
virtual void DoCleanup();
|
|
44 |
|
|
45 |
private:
|
|
46 |
void OpenAndPushEtelAndPhoneONStoreL(RMobileONStore& aONStore);
|
|
47 |
|
|
48 |
private:
|
|
49 |
RMobilePhoneBookStore iAdnPhoneBookStore;
|
|
50 |
}; // class CCTsyPhonebookOnFUNegative
|
|
51 |
|
|
52 |
|
|
53 |
#endif /* CTSYPHONEBOOKONFUNEGATIVE_H_ */
|