videocollection/videocollectionview/tsrc/testvideooperatorservice/inc/testvideooperatorservice.h
author hgs
Mon, 23 Aug 2010 14:27:29 +0300
changeset 55 4bfa887905cf
parent 50 21fe8338c6bf
permissions -rw-r--r--
201033

/**
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: tests for VideoOperatorService
*
*/

#ifndef TESTVIDEOOPERATORSERVICE_H
#define TESTVIDEOOPERATORSERVICE_H

// INCLUDE FILES
#include <qttest/qttest>

// FORWARD DECLARATIONS
class VideoOperatorService;

class TestVideoOperatorService : public QObject
{
    Q_OBJECT

public:
    TestVideoOperatorService();
    virtual ~TestVideoOperatorService();
    
private slots: // test functions for the test framework
    void init();
        
    void cleanup();
    
private slots:
    
    void test();
    
private:
    /** class under test */
    VideoOperatorService *mTestObject;

};

#endif//TESTVIDEOOPERATORSERVICE_H