equal
deleted
inserted
replaced
|
1 // Copyright (c) 2002-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 #include "TestBases.h" |
|
17 #include "NetConLog.h" |
|
18 #include "CNetworkController.h" |
|
19 |
|
20 // |
|
21 // Queue Test Base Class |
|
22 // |
|
23 |
|
24 CQueueTestBase::CQueueTestBase() |
|
25 {} |
|
26 |
|
27 void CQueueTestBase::ConstructL() |
|
28 { |
|
29 |
|
30 iNetCon = CNetworkController::NewL(); |
|
31 } |
|
32 |
|
33 CQueueTestBase::~CQueueTestBase() |
|
34 { |
|
35 |
|
36 if (iNetCon) |
|
37 delete iNetCon; |
|
38 } |
|
39 |
|
40 void CQueueTestBase::SelectComplete(const TDesC&) |
|
41 { |
|
42 |
|
43 User::Invariant(); |
|
44 } |
|
45 |
|
46 void CQueueTestBase::SelectComplete(TInt) |
|
47 { |
|
48 |
|
49 User::Invariant(); |
|
50 } |
|
51 |
|
52 void CQueueTestBase::ReconnectComplete(TInt) |
|
53 { |
|
54 |
|
55 User::Invariant(); |
|
56 } |
|
57 |