persistentstorage/sqlite3api/TEST/sqliteTestUtl.h
changeset 0 08ec8eefde2f
child 23 26645d81f48d
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     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 TestTitle(void);
       
    28 void TestStart(const char* title);
       
    29 void TestNext(const char* title);
       
    30 void TestClose(void);
       
    31 void TestEnd(void);
       
    32 void TestAbort(TInt aLine);
       
    33 
       
    34 void TestHeapMark(void);
       
    35 void TestHeapMarkEnd(void);
       
    36 
       
    37 void Print(const char* msg);
       
    38 void PrintI(const char* fmt, int a1);
       
    39 void PrintIII(const char* fmt, int a1, int a2, int a3);
       
    40 void PrintII64I64(const char* fmt, int a1, __int64 a2, __int64 a3);
       
    41 void PrintSI(const char* fmt, const char* s, int a1);
       
    42 void PrintS(const char* fmt, const char* s);
       
    43 
       
    44 void CreatePrivateDir(void);
       
    45 
       
    46 #ifdef __cplusplus
       
    47 }
       
    48 #endif
       
    49 
       
    50 #endif