![]() |
Gray C++ Libraries
0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
|
#include <cUnitTest.h>
Static Public Member Functions | |
static bool __stdcall | TestTypes () |
Static Public Attributes | |
static int | sm_nCreatedUnitTests = 0 |
Count the cUnitTest objects I have created. NOT just m_aUnitTests. More... | |
static const FILECHAR_t * | k_TestFiles = _FN("TestFiles") |
static const StrLen_t | k_TEXTBLOB_LEN = 566 |
StrT::Len(k_sTextBlob) = 0x236. More... | |
static const cStrConst | k_sTextBlob |
a single allocated k_TEXTBLOB_LEN+1 More... | |
static const StrLen_t | k_TEXTLINES_QTY = 18 |
STRMAX= _countof(k_asTextLines)-1. More... | |
static const cStrConst | k_asTextLines [k_TEXTLINES_QTY+1] |
nullptr terminated array of lines of text. More... | |
static struct for context information about the CURRENT running test. singleton Base class for all derived tests cUnitTest Assume we compile in the same environment as we unit test.
Check some basic compiler assumptions.
Called early in unit tests _MSC_VER, 32 bit, sizeof(bool)=1,sizeof(enum)=4,sizeof(int)=4,sizeof(long)=4 _MSC_VER, 64 bit, sizeof(bool)=1,sizeof(enum)=4,sizeof(int)=4,sizeof(long)=4, GNUC, 32 bit, sizeof(int)=4, sizeof(long)=? GNUC, 64 bit, sizeof(int)=4, sizeof(long)=8
|
static |
nullptr terminated array of lines of text.
|
static |
a single allocated k_TEXTBLOB_LEN+1
|
static |
|
static |
StrT::Len(k_sTextBlob) = 0x236.
|
static |
STRMAX= _countof(k_asTextLines)-1.
|
static |
Count the cUnitTest objects I have created. NOT just m_aUnitTests.