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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/***************************************************************************
* This file is part of the KDE project
* copyright (C) 2005 by Sebastian Sauer (mail@dipe.org)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
* You should have received a copy of the GNU Library General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
***************************************************************************/
#ifndef KOMACROTEST_BASE_H
#define KOMACROTEST_BASE_H
//Our own extended Macros from KUnittest
/**
* Macro to perform an equality check and exits the method if the check failed.
*
* @param actual The actual value.
* @param expected The expected value.
*/
#define KOMACROTEST_ASSERT(actual, expected) \
{ \
std::cout << TQString("Testing: %1 == %2").tqarg(#actual).tqarg(#expected).latin1() << std::endl; \
check( __FILE__, __LINE__, #actual, actual, expected, false ); \
if(actual != expected) \
{ \
kdWarning() << TQString("==============> FAILED") << endl; \
return; \
} \
}
/**
* Macro to perform a check that is expected to fail and that exits the method if the check failed.
*
* @param actual The actual value.
* @param notexpected The not expected value.
*/
#define KOMACROTEST_XASSERT(actual, notexpected) \
{ \
std::cout << TQString("Testing: %1 != %2").tqarg(#actual).tqarg(#notexpected).latin1() << std::endl; \
check( __FILE__, __LINE__, #actual, actual, notexpected, true ); \
if(actual == notexpected) \
{ \
kdWarning() << TQString("==============> FAILED") << endl; \
return; \
} \
}
/**
* Macro to test that @p expression throws an exception that is catched with the
* @p exceptionCatch exception.
*
* @param exceptionCatch The exception that is expected to be thrown.
* @param expression The expression that is executed within a try-catch block to
* check for the @p exceptionCatch .
*/
#define KOMACROTEST_ASSERTEXCEPTION(exceptionCatch, expression) \
{ \
try { \
expression; \
} \
catch(exceptionCatch) { \
setExceptionRaised(true); \
} \
if(exceptionRaised()) { \
success(TQString(__FILE__) + "[" + TQString::number(__LINE__) + "]: passed " + #expression); \
setExceptionRaised(false); \
} \
else { \
failure(TQString(__FILE__) + "[" + TQString::number(__LINE__) + TQString("]: failed to throw an exception on: ") + #expression); \
return; \
} \
}
#endif
//Used more tha once at various places
//names of variables from testaction
namespace KoMacroTest {
static const TQString TESTSTRING = "teststring";
static const TQString TESTINT = "testint";
static const TQString TESTBOOL = "testbool";
}
|