equal
deleted
inserted
replaced
|
1 // Copyright (c) 1997-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 // The context for the unit tests upon the CSmsSchemeHandler class methods. |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @SYMCreationDate Created : 01/06/01 14:07:23 |
|
21 */ |
|
22 |
|
23 #include "SmsSchemeHandlerTransitions.h" |
|
24 |
|
25 // ______________________________________________________________________________ |
|
26 // |
|
27 inline CSmsSchemeHandler_UnitTestContext::CSmsSchemeHandler_UnitTestContext(CDataLogger& aDataLogger, |
|
28 MStateAccessor& aStateAccessor, |
|
29 MTransitionObserver& aObserver) |
|
30 : CUnitTestContext(aDataLogger, aStateAccessor, aObserver) |
|
31 { |
|
32 //Do nothing |
|
33 } |
|
34 |
|
35 inline CSmsSchemeHandler_UnitTestContext::~CSmsSchemeHandler_UnitTestContext() |
|
36 { |
|
37 iPostCheck.Reset(); |
|
38 iPostCheck.Close(); |
|
39 delete iSmsSchemeHandler; |
|
40 } |
|
41 |