[u]Micro module for [Unit] program testing. Más...
#include <iostream>
Ir al código fuente de este archivo.
'defines' | |
#define | assertTrue(cond) testThis(!!(cond), #cond, __FILE__,__LINE__ ) |
(cond ? () : cout << "cond" ) Más... | |
#define | assertFalse(cond) testThis( !(cond),"!(" #cond ")", __FILE__,__LINE__ ) |
(!(cond) ? () : cout << "!" << (cond)" ) Más... | |
Funciones | |
static const char * | remove_dir_name (const char *str) |
"C:/DIR/SubDir/file_name.ext" ==> "file_name.ext" Más... | |
template<class T > | |
void | testThis (bool cond, const T *label, const T *fname, long lineno) |
template<> | |
void | testThis< char > (bool cond, const char *label, const char *fname, long lineno) |
[u]Micro module for [Unit] program testing.
\author Adolfo Di Mare <adolfo@di-mare.com> \date 2011 \see http://www.di-mare.com/adolfo/p/BUnitXP.htm
Definición en el archivo uUnit.h.
#define assertTrue | ( | cond | ) | testThis(!!(cond), #cond, __FILE__,__LINE__ ) |
#define assertFalse | ( | cond | ) | testThis( !(cond),"!(" #cond ")", __FILE__,__LINE__ ) |
|
static |
|
inline |