Disabled print statements in unit test
parent
6488eae412
commit
6f9601f5e0
|
|
@ -43,9 +43,9 @@ class TestValueData {
|
||||||
public:
|
public:
|
||||||
static int ConstructorCount;
|
static int ConstructorCount;
|
||||||
static int DestructorCount;
|
static int DestructorCount;
|
||||||
TestValueData(const TestValueData& other) { cout << "Copy constructor" << endl; ++ ConstructorCount; }
|
TestValueData(const TestValueData& other) { /*cout << "Copy constructor" << endl;*/ ++ ConstructorCount; }
|
||||||
TestValueData() { cout << "Default constructor" << endl; ++ ConstructorCount; }
|
TestValueData() { /*cout << "Default constructor" << endl;*/ ++ ConstructorCount; }
|
||||||
~TestValueData() { cout << "Destructor" << endl; ++ DestructorCount; }
|
~TestValueData() { /*cout << "Destructor" << endl;*/ ++ DestructorCount; }
|
||||||
};
|
};
|
||||||
int TestValueData::ConstructorCount = 0;
|
int TestValueData::ConstructorCount = 0;
|
||||||
int TestValueData::DestructorCount = 0;
|
int TestValueData::DestructorCount = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue