loc_plat/location_centre_api/tsrc/inc/testlocationappfilter.h
branchRCL_3
changeset 16 4721bd00d3da
parent 14 3a25f69541ff
child 21 e15b7f06eba6
equal deleted inserted replaced
14:3a25f69541ff 16:4721bd00d3da
     1 /*
       
     2 * Copyright (c) 2007 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:  Test Class which has the list of test cases for TLcLocationAppFilter
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CTESTLOCATIONAPPFILTER_H
       
    20 #define CTESTLOCATIONAPPFILTER_H
       
    21 
       
    22 // System Includes
       
    23 #include <StifLogger.h>
       
    24 #include <StifParser.h>
       
    25 #include <StifTestModule.h>
       
    26 #include <e32base.h>
       
    27 #include <e32std.h>
       
    28 #include <bautils.h>
       
    29 #include <f32file.h>
       
    30 
       
    31 // Constants
       
    32 
       
    33 // CLASS DECLARATION
       
    34 /**
       
    35  *  Test Class For TLcLocationAppFilter
       
    36  *
       
    37  *  This has TLcLocationAppFilter object which invokes TLcLocationAppFilter methods 
       
    38  *
       
    39  *  @lib testlc.lib
       
    40  *  @since S60 v5.0
       
    41  */
       
    42 
       
    43 class CTestLocationAppFilter : public CBase
       
    44     {
       
    45     public:  
       
    46     
       
    47     	// Constructors and destructor
       
    48         /**
       
    49         * C++ default constructor.
       
    50         */
       
    51         CTestLocationAppFilter(CStifLogger* aLog);
       
    52 
       
    53         /**
       
    54         * Destructor. 
       
    55         */
       
    56         ~CTestLocationAppFilter();
       
    57 
       
    58     public:         
       
    59 
       
    60         // New functions  
       
    61 	    /**
       
    62 	     * Method to Check Creation of TLcLocationAppFilter
       
    63 	     * @since S60 v5.0
       
    64 	     * Returns KErrNone if successful. 
       
    65 	     *
       
    66 	     */        
       
    67 		  TInt CheckTLcLocationAppFilter( );
       
    68 	
       
    69 	    /**
       
    70 	     * Method to Check set of FilterSystemCharacteristics
       
    71 	     * @since S60 v5.0
       
    72 	     * Returns KErrNone if successful. 
       
    73 	     *
       
    74 	     */        
       
    75 		  TInt CheckFilterSystemCharacteristics( TInt aChoice );
       
    76 		 
       
    77 	    /**
       
    78 	     * Method to Check set of FilterApplicationCharacteristics
       
    79 	     * @since S60 v5.0
       
    80 	     * Returns KErrNone if successful. 
       
    81 	     *
       
    82 	     */        
       
    83 		  TInt CheckFilterApplicationCharacteristics( TInt aChoice );
       
    84 		   		
       
    85 	    /**
       
    86 	     * Method to Check set of SysCharFilterConfiguration
       
    87 	     * @since S60 v5.0
       
    88 	     * Returns KErrNone if successful. 
       
    89 	     *
       
    90 	     */        
       
    91 		  TInt CheckSysCharFilterConfiguration( TInt aChoice );
       
    92 		 
       
    93 	    /**
       
    94 	     * Method to Check set of AppCharFilterConfiguration
       
    95 	     * @since S60 v5.0
       
    96 	     * Returns KErrNone if successful. 
       
    97 	     *
       
    98 	     */        
       
    99 		  TInt CheckAppCharFilterConfiguration( TInt aChoice );
       
   100 		  	  	   
       
   101     private:  //data
       
   102     	  
       
   103 	    /**
       
   104 	     * Pointer to Stif Logger - Does not Own
       
   105 	     */           
       
   106         CStifLogger* 			iLog;
       
   107 	        
       
   108      };     
       
   109 
       
   110 #endif      // CTESTLOCATIONAPPFILTER_H
       
   111 
       
   112 // End of File