File tree Expand file tree Collapse file tree 6 files changed +9
-8
lines changed
hooks/dhcp/forensic_log/tests Expand file tree Collapse file tree 6 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ struct CalloutTestv4 : CalloutTest {
72
72
}
73
73
74
74
// / @brief Called before each test.
75
- virtual void SetUp () final override {
75
+ virtual void SetUp () override {
76
76
RotatingFileTest::SetUp ();
77
77
// Various entities used in tests.
78
78
client_id_ = boost::make_shared<ClientId>(CLIENTID);
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ struct CalloutTestv6 : CalloutTest {
72
72
}
73
73
74
74
// / @brief Called before each test.
75
- virtual void SetUp () final override {
75
+ virtual void SetUp () override {
76
76
RotatingFileTest::SetUp ();
77
77
// Various entities used in tests.
78
78
duid_ = boost::make_shared<DUID>(DUID_DATA);
Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ struct LegalLogMgrTest : ::testing::Test {
41
41
virtual ~LegalLogMgrTest () = default ;
42
42
43
43
// / @brief Called before each test.
44
- virtual void SetUp () final override {
44
+ virtual void SetUp () override {
45
45
// Clean up from past tests.
46
46
LegalLogMgrFactory::delAllBackends ();
47
47
}
48
48
49
49
// / @brief Called after each test.
50
- virtual void TearDown () {
50
+ virtual void TearDown () override {
51
51
// Clean up from past tests.
52
52
LegalLogMgrFactory::delAllBackends ();
53
53
reset ();
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ using namespace isc::util;
22
22
namespace {
23
23
24
24
struct OpaqueDataTupleLenientParsing : ::testing::Test {
25
- void SetUp () final override {
25
+ void SetUp () override {
26
26
// Retain the current setting for future restoration.
27
27
previous_ = Option::lenient_parsing_;
28
28
29
29
// Enable lenient parsing.
30
30
Option::lenient_parsing_ = true ;
31
31
}
32
32
33
- void TearDown () final override {
33
+ void TearDown () override {
34
34
// Restore.
35
35
Option::lenient_parsing_ = previous_;
36
36
}
Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ using namespace isc::util;
19
19
namespace {
20
20
21
21
struct OptionVendorClassLenientParsing : ::testing::Test {
22
- void SetUp () final override {
22
+ void SetUp () override {
23
23
// Retain the current setting for future restoration.
24
24
previous_ = Option::lenient_parsing_;
25
25
26
26
// Enable lenient parsing.
27
27
Option::lenient_parsing_ = true ;
28
28
}
29
29
30
- void TearDown () final override {
30
+ void TearDown () override {
31
31
// Restore.
32
32
Option::lenient_parsing_ = previous_;
33
33
}
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ libdhcpsrvtest_la_SOURCES += config_result_check.cc config_result_check.h
18
18
libdhcpsrvtest_la_SOURCES += dhcp4o6_test_ipc.cc dhcp4o6_test_ipc.h
19
19
libdhcpsrvtest_la_SOURCES += host_data_source_utils.cc host_data_source_utils.h
20
20
libdhcpsrvtest_la_SOURCES += lib_load_test_fixture.h
21
+ libdhcpsrvtest_la_SOURCES += forensic_test_utils.h
21
22
libdhcpsrvtest_la_SOURCES += memory_host_data_source.cc memory_host_data_source.h
22
23
libdhcpsrvtest_la_SOURCES += test_utils.cc test_utils.h
23
24
libdhcpsrvtest_la_SOURCES += generic_backend_unittest.cc generic_backend_unittest.h
You can’t perform that action at this time.
0 commit comments