I know that Gtest has a TearDown
, but it is called before the destructor of the fixture class is called. I also know that there is the TearDownTestCase
, which is called after all the tests using that fixture are executed and after the last instance of the fixture is deleted.
Are there any form of tear down that executes for each test but after the destructor of the fixture has been called?
Trying to explain the problem I want to solve with this approach. This is what the code looks like:
class c;
class MyFixture : public ::testing::Test, public A {
...
static C *c;
SetUp(){
c = new C();
SetC(c) // this function is from base class A
}
};
TEST_F(B, test1){
...
}
I don't have access to the implementation of A. What happens is that I always need to create and destroy c
on each test, but if I destroy it before the destructor of base class A is called, something happens there that causes the test to exit (without any explicit error, it just exits with code 255).
The real solution is probably some fix on class A
's destructor. But while I don't have it, I was wondering if there was a standard way to destroy c
after each test, after the destructor of A is called.