You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.1 KiB
91 lines
3.1 KiB
/***************************************************************************
|
|
* 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").arg(#actual).arg(#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").arg(#actual).arg(#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";
|
|
}
|