summaryrefslogtreecommitdiff
path: root/tools/build/test/qt4/qtgui.cpp
blob: 478e07a2af271ae474f6e9f45e9bda488e6bb1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// (c) Copyright Juergen Hunold 2008
// Use, modification and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#define BOOST_TEST_MODULE QtGui

#include <QApplication>

#include <boost/test/unit_test.hpp>

struct Fixture
{
    Fixture()
        : application(boost::unit_test::framework::master_test_suite().argc,
                      boost::unit_test::framework::master_test_suite().argv,
                      false)
    {
        BOOST_TEST_MESSAGE( "setup QApplication fixture" );
    }

    ~Fixture()
    {
        BOOST_TEST_MESSAGE( "teardown QApplication fixture" );
    }

    QApplication application;
};

BOOST_GLOBAL_FIXTURE( Fixture )

BOOST_AUTO_TEST_CASE( defines)
{
    BOOST_CHECK_EQUAL(BOOST_IS_DEFINED(QT_CORE_LIB), true);
    BOOST_CHECK_EQUAL(BOOST_IS_DEFINED(QT_GUI_LIB), true);
}


BOOST_AUTO_TEST_CASE( qtgui_test)
{
    BOOST_CHECK_EQUAL(true, true);
}