os/persistentdata/persistentstorage/sqlite3api/TEST/sqliteTestUtl.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef __SQLITE_TEST_UTL_H__
    21 #define __SQLITE_TEST_UTL_H__
    22 
    23 #ifdef __cplusplus
    24 extern "C" {
    25 #endif
    26 
    27 void TestOpen(const char* title);
    28 void TestTitle(void);
    29 void TestStart(const char* title);
    30 void TestNext(const char* title);
    31 void TestClose(void);
    32 void TestEnd(void);
    33 void TestAbort(TInt aLine);
    34 void TestTestLine(int aResult, int aLine);
    35 void TestTest(int aResult);
    36 void TestPrintf(const char* title);
    37 
    38 void TestHeapMark(void);
    39 void TestHeapMarkEnd(void);
    40 
    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);
    47 
    48 void CreatePrivateDir(void);
    49 
    50 #ifdef __cplusplus
    51 }
    52 #endif
    53 
    54 #endif