First public contribution.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef __SQLITE_TEST_UTL_H__
21 #define __SQLITE_TEST_UTL_H__
27 void TestOpen(const char* title);
29 void TestStart(const char* title);
30 void TestNext(const char* title);
33 void TestAbort(TInt aLine);
34 void TestTestLine(int aResult, int aLine);
35 void TestTest(int aResult);
36 void TestPrintf(const char* title);
38 void TestHeapMark(void);
39 void TestHeapMarkEnd(void);
41 void Print(const char* msg);
42 void PrintI(const char* fmt, int a1);
43 void PrintIII(const char* fmt, int a1, int a2, int a3);
44 void PrintII64I64(const char* fmt, int a1, __int64 a2, __int64 a3);
45 void PrintSI(const char* fmt, const char* s, int a1);
46 void PrintS(const char* fmt, const char* s);
48 void CreatePrivateDir(void);