I have a test fixture:
class UnitTestCompositor :public ::testing::Test
{
public:
UnitTestCompositor(){}
void SetUp()
{
//some setup code ...
}
void TearDown() {
}
~UnitTestCompositor() {
}
}
and i have a bunch of tests:
TEST_F(UnitTestCompositor, DISABLED_CheckDistortionMeshes){
// test code
}
TEST_F(UnitTestCompositor, DISABLED_CheckLeftAndRightEyeMeshes){
// test code
}
So now i have these tests disabled individually, is there a way to disable the SetUp() code from running? or disable the test Fixture and tests from running all together apart from commenting the code?