Tools
prtest.txt
Associated article: Pseudorandom Testing
Tags: Tools
Published source code accompanying the article by Guy W. Lecky-Thompson in which he examines how you can test objects by creating specific test harnesses with verifiable data sets.
Pseudo-Random Testing
by Guy W. Lecky-Thompson
Listing One
class CEmployee
{
private:
char * szName;
long int lID;
public:
// Constructor
CEmployee ( char * szName, long int lID );
// Destructor
~CEmployee ( );
// Inline Data Access Methods
char * GetName() { return this->szName; }
long int GetID() { return ...


