telephonyserverplugins/common_tsy/test/integration/inc/cctsytestlogging.h
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Logging definitions
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file 	
       
    20  @internalTechnology
       
    21 */
       
    22 
       
    23 #ifndef CCTSYTESTLOGGING_H_
       
    24 #define CCTSYTESTLOGGING_H_
       
    25 
       
    26 #include <comms-infras/commsdebugutility.h>
       
    27 
       
    28 _LIT8(KTSYSubSystem1, "tsy");
       
    29 _LIT8(KTSYCompnt1, "ctsytestframework");
       
    30 
       
    31 #define TEST_FRAMEWORK_LOG1(AAA)             	{ __FLOG_STATIC0(KTSYSubSystem1, KTSYCompnt1, (AAA)); }
       
    32 #define TEST_FRAMEWORK_LOG2(AAA,BBB)         	{ __FLOG_STATIC1(KTSYSubSystem1, KTSYCompnt1, (AAA), (BBB)); }
       
    33 #define TEST_FRAMEWORK_LOG3(AAA,BBB,CCC)     	{ __FLOG_STATIC2(KTSYSubSystem1, KTSYCompnt1, (AAA), (BBB), (CCC)); }
       
    34 #define TEST_FRAMEWORK_LOG4(AAA,BBB,CCC,DDD) 	{ __FLOG_STATIC3(KTSYSubSystem1, KTSYCompnt1, (AAA), (BBB), (CCC), (DDD)); }
       
    35 #define TEST_FRAMEWORK_LOG5(AAA,BBB,CCC,DDD,EEE){ __FLOG_STATIC4(KTSYSubSystem1, KTSYCompnt1, (AAA), (BBB), (CCC), (DDD), (EEE)); }
       
    36 #define TEST_FRAMEWORK_LOG6(AAA,BBB,CCC,DDD,EEE,FFF){ __FLOG_STATIC5(KTSYSubSystem1, KTSYCompnt1, (AAA), (BBB), (CCC), (DDD), (EEE), (FFF)); }
       
    37 
       
    38 #endif /*CCTSYTESTLOGGING_H_*/