Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 #include "sqliteTestUtl.h"
21 static TBuf8<500> TheBuf8;
22 static TBuf16<500> TheBuf16;
24 static RTest* TheTest;
26 extern "C" void TestOpen(const char* title)
28 TPtrC8 p((const unsigned char*)title);
30 TheTest = new RTest(TheBuf16);
33 extern "C" void TestTitle()
38 extern "C" void TestStart(const char* title)
40 TPtrC8 p((const unsigned char*)title);
42 TheTest->Start(TheBuf16);
45 extern "C" void TestNext(const char* title)
47 TPtrC8 p((const unsigned char*)title);
49 TheTest->Next(TheBuf16);
52 extern "C" void TestClose(void)
58 extern "C" void TestEnd(void)
63 extern "C" void TestAbort(int aLine)
65 TheTest->operator()(0, aLine);
68 extern "C" void TestTestLine(int aResult, int aLine)
70 TheTest->operator()(aResult, aLine);
73 extern "C" void TestTest(int aResult)
75 TheTest->operator()(aResult);
78 extern "C" void TestPrintf(const char* title)
80 TPtrC8 p((const unsigned char*)title);
82 TheTest->Printf(TheBuf16);
85 extern "C" void TestHeapMark(void)
90 extern "C" void TestHeapMarkEnd(void)
95 extern "C" void Print(const char* msg)
97 TPtrC8 p((const unsigned char*)msg);
99 RDebug::Print(TheBuf16);
102 extern "C" void PrintI(const char* fmt, int a1)
104 TPtrC8 p((const unsigned char*)fmt);
106 RDebug::Print(TheBuf16, a1);
109 extern "C" void PrintIII(const char* fmt, int a1, int a2, int a3)
111 TPtrC8 p((const unsigned char*)fmt);
113 RDebug::Print(TheBuf16, a1, a2, a3);
116 extern "C" void PrintII64I64(const char* fmt, int a1, __int64 a2, __int64 a3)
118 TPtrC8 p((const unsigned char*)fmt);
120 RDebug::Print(TheBuf16, a1, a2, a3);
123 extern "C" void PrintSI(const char* fmt, const char* s, int a1)
125 TPtrC8 p((const unsigned char*)fmt);
126 TheBuf8.Format(TPtrC8((const TUint8*)fmt), s, a1);
127 TheBuf16.Copy(TheBuf8);
128 RDebug::Print(TheBuf16);
131 extern "C" void PrintS(const char* fmt, const char* s)
133 TPtrC8 p((const unsigned char*)fmt);
134 TheBuf8.Format(TPtrC8((const TUint8*)fmt), s);
135 TheBuf16.Copy(TheBuf8);
136 RDebug::Print(TheBuf16);
139 extern "C" void CreatePrivateDir(void)
142 TInt err = TheFs.Connect();
143 TheTest->operator()(err == KErrNone);
144 err = TheFs.CreatePrivatePath(EDriveC);
146 TheTest->operator()(err == KErrNone || err == KErrAlreadyExists);