}
/// @brief Called before each test.
- virtual void SetUp() final override {
+ virtual void SetUp() override {
RotatingFileTest::SetUp();
// Various entities used in tests.
client_id_ = boost::make_shared<ClientId>(CLIENTID);
}
/// @brief Called before each test.
- virtual void SetUp() final override {
+ virtual void SetUp() override {
RotatingFileTest::SetUp();
// Various entities used in tests.
duid_ = boost::make_shared<DUID>(DUID_DATA);
virtual ~LegalLogMgrTest() = default;
/// @brief Called before each test.
- virtual void SetUp() final override {
+ virtual void SetUp() override {
// Clean up from past tests.
LegalLogMgrFactory::delAllBackends();
}
/// @brief Called after each test.
- virtual void TearDown() {
+ virtual void TearDown() override {
// Clean up from past tests.
LegalLogMgrFactory::delAllBackends();
reset();
namespace {
struct OpaqueDataTupleLenientParsing : ::testing::Test {
- void SetUp() final override {
+ void SetUp() override {
// Retain the current setting for future restoration.
previous_ = Option::lenient_parsing_;
Option::lenient_parsing_ = true;
}
- void TearDown() final override {
+ void TearDown() override {
// Restore.
Option::lenient_parsing_ = previous_;
}
namespace {
struct OptionVendorClassLenientParsing : ::testing::Test {
- void SetUp() final override {
+ void SetUp() override {
// Retain the current setting for future restoration.
previous_ = Option::lenient_parsing_;
Option::lenient_parsing_ = true;
}
- void TearDown() final override {
+ void TearDown() override {
// Restore.
Option::lenient_parsing_ = previous_;
}
libdhcpsrvtest_la_SOURCES += dhcp4o6_test_ipc.cc dhcp4o6_test_ipc.h
libdhcpsrvtest_la_SOURCES += host_data_source_utils.cc host_data_source_utils.h
libdhcpsrvtest_la_SOURCES += lib_load_test_fixture.h
+libdhcpsrvtest_la_SOURCES += forensic_test_utils.h
libdhcpsrvtest_la_SOURCES += memory_host_data_source.cc memory_host_data_source.h
libdhcpsrvtest_la_SOURCES += test_utils.cc test_utils.h
libdhcpsrvtest_la_SOURCES += generic_backend_unittest.cc generic_backend_unittest.h