#include "../include/iutest.hpp"
{
protected:
static int x;
public:
virtual void SetUp()
{
++x;
}
static void SetUpTestCase()
{
x = 0;
}
};
int TestFixed::x = -1;
{
}
{
}
typedef TestFixed TestFixed2;
struct Point
{
int x, y;
bool operator == (const Point& rhs) const { return x==rhs.x && y==rhs.y; }
};
{
{
Point a = {0, 0};
Point b = {0, 0};
}
}
{
}