Disabled print statements in unit test

release/4.3a0
Richard Roberts 2013-01-08 23:31:03 +00:00
parent 6488eae412
commit 6f9601f5e0
1 changed files with 3 additions and 3 deletions

View File

@ -43,9 +43,9 @@ class TestValueData {
public:
static int ConstructorCount;
static int DestructorCount;
TestValueData(const TestValueData& other) { cout << "Copy constructor" << endl; ++ ConstructorCount; }
TestValueData() { cout << "Default constructor" << endl; ++ ConstructorCount; }
~TestValueData() { cout << "Destructor" << endl; ++ DestructorCount; }
TestValueData(const TestValueData& other) { /*cout << "Copy constructor" << endl;*/ ++ ConstructorCount; }
TestValueData() { /*cout << "Default constructor" << endl;*/ ++ ConstructorCount; }
~TestValueData() { /*cout << "Destructor" << endl;*/ ++ DestructorCount; }
};
int TestValueData::ConstructorCount = 0;
int TestValueData::DestructorCount = 0;