Retro68/AutomatedTests/Init.cc

23 lines
245 B
C++
Raw Normal View History

2017-10-03 09:57:56 +00:00
#include "Test.h"
class Constructed
{
public:
Constructed()
{
TestLog("constructor");
}
~Constructed()
{
TestLog("destructor");
}
2017-10-03 09:57:56 +00:00
};
Constructed thing;
int main()
{
TestLog("main");
return 0;
2017-10-03 09:57:56 +00:00
}