logsui/logsservices/tsrc/at_logsservices/inc/at_logsservices.h
changeset 21 2f0af9ba7665
parent 18 acd4e87b24b4
equal deleted inserted replaced
18:acd4e87b24b4 21:2f0af9ba7665
     1 /*
       
     2 * Copyright (c) 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 #ifndef AT_LOGSSERVICES_H
       
    18 #define AT_LOGSSERVICES_H
       
    19 
       
    20 #include <QObject>
       
    21 
       
    22 class AT_LogsServices : public QObject        
       
    23 {
       
    24      Q_OBJECT
       
    25     
       
    26 private slots:
       
    27 
       
    28 /*
       
    29  * In addition, there are four private slots that are not treated as testfunctions. 
       
    30  * They will be executed by the testing framework and can be used to initialize and clean up 
       
    31  * either the entire test or the current test function.
       
    32  * 
       
    33  * initTestCase() will be called before the first testfunction is executed.
       
    34  * cleanupTestCase() will be called after the last testfunction was executed.
       
    35  * init() will be called before each testfunction is executed.
       
    36  * cleanup() will be called after every testfunction.
       
    37 */
       
    38     void initTestCase();
       
    39     void cleanupTestCase();
       
    40     void init();
       
    41     void cleanup();
       
    42 
       
    43 private slots: //test methods
       
    44      
       
    45     void testStart();
       
    46         
       
    47 private:
       
    48 
       
    49 };
       
    50 
       
    51 
       
    52 #endif //AT_LOGSSERVICES_H