- Reimplement Veritas::ResultsModel. It now supports multiple result-entries per...
[kdevelopdvcssupport.git] / veritas / tests / resultsproxymodeltest.h
blob29509399d4160a82b14a6ca46d80e761e9aadb24
1 /* KDevelop xUnit plugin
3 * Copyright 2008 Manuel Breugelmans <mbr.nxi@gmail.com>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA.
21 #ifndef VERITAS_RESULTSPROXYMODELTEST_H
22 #define VERITAS_RESULTSPROXYMODELTEST_H
24 #include <QtCore/QObject>
26 namespace Veritas {
27 class ResultsModel;
28 class ResultsProxyModel;
30 class ResultsProxyModelTest : public QObject
32 Q_OBJECT
34 private slots:
35 void init();
36 void cleanup();
37 void filter();
39 private:
40 void assertDataAt(int row, int column, const QVariant& expected);
41 void assertRowFiltered(int row);
42 void assertRowContains(int row, const QVariant& col1, const QVariant& col2, const QVariant& col3, const QVariant& col4);
44 private:
45 ResultsModel* source;
46 ResultsProxyModel* proxy;
52 #endif // VERITAS_RESULTSPROXYMODELTEST_H