Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
671 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU General Public License as published by |
||
8 | ** the Free Software Foundation, either version 3 of the License, or |
||
9 | ** (at your option) any later version. |
||
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 | |||
157 | werner | 20 | #ifndef TESTS_H |
21 | #define TESTS_H |
||
780 | werner | 22 | #include <QString> |
23 | #include <QObject> |
||
24 | #if QT_VERSION < 0x050000 |
||
25 | #include <QtGui> |
||
26 | #else |
||
27 | #include <QtWidgets> |
||
28 | #endif |
||
157 | werner | 29 | |
780 | werner | 30 | |
214 | werner | 31 | class Climate; |
157 | werner | 32 | class Tests |
33 | { |
||
34 | public: |
||
200 | werner | 35 | Tests(QObject *wnd); |
157 | werner | 36 | void speedOfExpression(); |
37 | void clearTrees(); |
||
38 | void killTrees(); |
||
193 | werner | 39 | // climate |
40 | void climate(); |
||
209 | werner | 41 | void climateResponse(); |
200 | werner | 42 | // light based tests for multiple stands |
43 | void multipleLightRuns(const QString &fileName); |
||
240 | werner | 44 | void testWater(); |
243 | werner | 45 | void testCSVFile(); |
280 | werner | 46 | void testXml(); |
289 | werner | 47 | void testRandom(); |
373 | werner | 48 | void testSeedDispersal(); |
419 | werner | 49 | void testMultithreadExecute(); |
422 | werner | 50 | void testLinearExpressions(); |
434 | werner | 51 | void testEstablishment(); |
438 | werner | 52 | void testGridRunner(); |
525 | werner | 53 | void testSoil(); |
539 | werner | 54 | void testMap(); |
641 | werner | 55 | void testDEM(); |
652 | werner | 56 | void testFire(); |
702 | werner | 57 | void testWind(); |
766 | werner | 58 | void testRumple(); |
808 | werner | 59 | void testFOMEsetup(); |
876 | werner | 60 | void testFOMEstep(); |
1002 | werner | 61 | void testDbgEstablishment(); |
1067 | werner | 62 | void testGridIndexHack(); |
200 | werner | 63 | private: |
64 | QString dumpTreeList(); |
||
65 | QObject *mParent; |
||
211 | werner | 66 | private: |
67 | void testSun(); |
||
255 | werner | 68 | void testPheno(const Climate *clim); |
200 | werner | 69 | |
240 | werner | 70 | |
157 | werner | 71 | }; |
72 | |||
73 | #endif // TESTS_H |