~stolowski/unity-scopes-shell/single-preview

« back to all changes in this revision

Viewing changes to tests/filtersbindingstest.h

  • Committer: Michal Hruby
  • Date: 2013-11-07 17:48:16 UTC
  • Revision ID: michal.mhr@gmail.com-20131107174816-w1vqq6juarrawx23
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Pawel Stolowski <pawel.stolowski@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef FILTERSBINDINGSTEST_H
 
21
#define FILTERSBINDINGSTEST_H
 
22
 
 
23
#include <QObject>
 
24
#include <dee.h>
 
25
 
 
26
class FiltersBindingsTest : public QObject
 
27
{
 
28
    Q_OBJECT
 
29
 
 
30
    private Q_SLOTS:
 
31
        void initTestCase();
 
32
        void testMultiRangeFilter();
 
33
        void testCheckOptionFilter();
 
34
        void testRadioOptionFilter();
 
35
        void testRatingsFilter();
 
36
 
 
37
    private:
 
38
        DeeModel* createFilterModel();
 
39
        GVariant* createOptions(int numOfOptions);
 
40
        void createMultiRangeFilter(DeeModel *model, const std::string &id, const std::string &name, int optionCount);
 
41
        void createCheckOptionFilter(DeeModel *model, const std::string &id, const std::string &name, int optionCount);
 
42
        void createRadioOptionFilter(DeeModel *model, const std::string &id, const std::string &name, int optionCount);
 
43
        void createRatingsFilter(DeeModel *model, const std::string &id, const std::string &name);
 
44
        void createFilter(DeeModel *model, const std::string &renderer, const std::string &id, const std::string &name, int optionCount, bool showAll);
 
45
};
 
46
 
 
47
#endif // FILTERSBINDINGSTEST_H