Home | History | Annotate | Download | only in test

Lines Matching defs:SetUp

59 // Setup() method in a test fixture.
65 void Setup() {}
69 // Tests that the compiler catches the typo when a user calls Setup()
76 virtual void SetUp() {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class.
83 // Setup() method in a subclass of Environment.
89 void Setup() {}
93 // Tests that the compiler catches the typo when a user calls Setup()
100 virtual void SetUp() {
101 // Tries to call SetUp() in the parent class.
102 testing::Environment::Setup();