Home | History | Annotate | Download | only in samples

Lines Matching full:fixture

32 // This sample teaches how to reuse a test fixture in multiple test
35 // When you define a test fixture, you specify the name of the test
36 // case that will use this fixture. Therefore, a test fixture can
44 // test fixture, and then have each test case use a fixture derived
45 // from this super fixture.
57 // We put the code for timing a test in a test fixture called
58 // "QuickTest". QuickTest is intended to be the super fixture that
88 // We derive a fixture named IntegerFunctionTest from the QuickTest
89 // fixture. All tests using this fixture will be automatically
92 // We don't need any more logic than already in the QuickTest fixture.
139 // we derive another fixture from QuickTest.
141 // The QueueTest test fixture has some logic and shared objects in
143 // stuff inside the body of the test fixture, as usual.
147 // First, we need to set up the super fixture (QuickTest).
150 // Second, some additional setup for this fixture.
170 // Now, let's write tests using the QueueTest fixture.
196 // fixture itself. For example, you can derive another fixture from