Home
last modified time | relevance | path

Searched refs:BaseTest (Results 1 – 8 of 8) sorted by relevance

/freebsd/tests/examples/
H A Dtest_examples.py2 from atf_python.utils import BaseTest
20 class TestExampleSimplest(BaseTest):
26 class TestExampleSimple(BaseTest):
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-param-test.h157 class BaseTest : public ::testing::Test {
162 class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
166 TEST_F(BaseTest, HasFoo) {
/freebsd/tests/atf_python/
H A Dktest.py18 from atf_python.utils import BaseTest
117 class BaseKernelTest(BaseTest):
H A Dutils.py45 class BaseTest(object): class
/freebsd/contrib/googletest/docs/
H A Dfaq.md237 class BaseTest : public ::testing::Test {
242 // Derives a fixture FooTest from BaseTest.
243 class FooTest : public BaseTest {
246 BaseTest::SetUp(); // Sets up the base fixture first.
252 BaseTest::TearDown(); // Remember to tear down the base fixture
263 ... additional fixtures derived from BaseTest ...
418 class FooTest : public BaseTest {};
423 class BarTest : public BaseTest {};
432 typedef BaseTest FooTest;
437 typedef BaseTest BarTest;
H A Dadvanced.md1076 class BaseTest : public testing::Test {
1079 class BarTest : public BaseTest,
/freebsd/sbin/ipfw/tests/
H A Dtest_add_rule.py49 from atf_python.utils import BaseTest
92 class TestAddRule(BaseTest):
/freebsd/tests/atf_python/sys/net/
H A Dvnet.py17 from atf_python.utils import BaseTest
333 class VnetTestTemplate(BaseTest):