equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-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 the License "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 // e32test\dll\t_oeexport.cpp |
|
15 // Overview: |
|
16 // Tests that getting 0th ordinal from non-stdexe returns NULL |
|
17 // API Information: |
|
18 // RProcess |
|
19 // Details: |
|
20 // Platforms/Drives/Compatibility: |
|
21 // All |
|
22 // Assumptions/Requirement/Pre-requisites: |
|
23 // Failures and causes: |
|
24 // Base Port information: |
|
25 // |
|
26 // |
|
27 |
|
28 #include <e32test.h> |
|
29 |
|
30 RTest test(_L("T_OEEXPORT1")); |
|
31 |
|
32 TInt E32Main() |
|
33 { |
|
34 test.Title(); |
|
35 |
|
36 test.Start(_L("Test retrieving 0th ordinal from non-stdexe returns NULL")); |
|
37 test(RProcess::ExeExportData()==NULL); |
|
38 |
|
39 test.End(); |
|
40 return KErrNone; |
|
41 } |