Home | History | Annotate | Download | only in samples

Lines Matching refs:QuickTest

58 // "QuickTest".  QuickTest is intended to be the super fixture that
60 // the name "QuickTest". This is OK.
62 // Later, we will derive multiple test fixtures from QuickTest.
63 class QuickTest : public testing::Test {
88 // We derive a fixture named IntegerFunctionTest from the QuickTest
91 class IntegerFunctionTest : public QuickTest {
92 // We don't need any more logic than already in the QuickTest fixture.
139 // we derive another fixture from QuickTest.
142 // addition to what's in QuickTest already. We define the additional
144 class QueueTest : public QuickTest {
147 // First, we need to set up the super fixture (QuickTest).
148 QuickTest::SetUp();
157 // QuickTest::TearDown(). As we have no additional cleaning work
161 // QuickTest::TearDown();