profilesservices/FileList/tsrc/public/basic/inc/T_CFLDController.h
branchRCL_3
changeset 25 7e0eff37aedb
parent 0 8c5d936e5675
equal deleted inserted replaced
24:8ee96d21d9bf 25:7e0eff37aedb
       
     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: 
       
    15 *  CFLDController test class.
       
    16 *
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef __T_CFLDController_H__
       
    22 #define __T_CFLDController_H__
       
    23 
       
    24 // INCLUDES
       
    25 #include <CEUnitTestSuiteClass.h>
       
    26 
       
    27 //  FORWARD DECLARATIONS
       
    28 class CFLDController;
       
    29 
       
    30 //  CLASS DEFINITION
       
    31 
       
    32 /*
       
    33 -----------------------------------------------------------------------------
       
    34 
       
    35     DESCRIPTION
       
    36 
       
    37     Test suite for class CEUnitTestCase.
       
    38 
       
    39 -----------------------------------------------------------------------------
       
    40 */
       
    41 class T_CFLDController
       
    42     : public CEUnitTestSuiteClass
       
    43     {
       
    44     public:		// Constructors and destructors
       
    45         static T_CFLDController* NewLC();
       
    46         ~T_CFLDController();
       
    47 
       
    48     private:	// New methods
       
    49         T_CFLDController();
       
    50         void ConstructL();
       
    51 
       
    52     private:    // Test case functions
       
    53         void SetupL();
       
    54         void EmptySetupL();
       
    55         void Teardown();
       
    56 
       
    57         // tests:
       
    58         void TestCreateObjectL();
       
    59 
       
    60         void HandleFileListBoxEventTestL();
       
    61         void SetDelayTestL();
       
    62 
       
    63         void SetVolumeTestL();
       
    64         void SetRingingTypeTestL();
       
    65         void SetVibraTestL();
       
    66         void Set3dEffectsTestL();
       
    67         void SetFileObserverTestL();
       
    68 
       
    69     private:  // Implementation
       
    70         EUNIT_DECLARE_TEST_TABLE;
       
    71 
       
    72     private:	// Data
       
    73         CFLDController* iController; // own
       
    74     };
       
    75 
       
    76 #endif      //  __T_CFLDController_H__
       
    77 
       
    78 // end of file
       
    79