Lines Matching full:fixture
30 // This sample teaches how to reuse a test fixture in multiple test
33 // When you define a test fixture, you specify the name of the test
34 // case that will use this fixture. Therefore, a test fixture can
42 // test fixture, and then have each test case use a fixture derived
43 // from this super fixture.
56 // We put the code for timing a test in a test fixture called
57 // "QuickTest". QuickTest is intended to be the super fixture that
84 // We derive a fixture named IntegerFunctionTest from the QuickTest
85 // fixture. All tests using this fixture will be automatically
88 // We don't need any more logic than already in the QuickTest fixture.
132 // we derive another fixture from QuickTest.
134 // The QueueTest test fixture has some logic and shared objects in
136 // stuff inside the body of the test fixture, as usual.
140 // First, we need to set up the super fixture (QuickTest). in SetUp()
143 // Second, some additional setup for this fixture. in SetUp()
162 // Now, let's write tests using the QueueTest fixture.
186 // fixture itself. For example, you can derive another fixture from