summaryrefslogtreecommitdiff
path: root/src/mongo/db/ftdc/controller_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/ftdc/controller_test.cpp')
-rw-r--r--src/mongo/db/ftdc/controller_test.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mongo/db/ftdc/controller_test.cpp b/src/mongo/db/ftdc/controller_test.cpp
index c307d02cca8..de88054aec9 100644
--- a/src/mongo/db/ftdc/controller_test.cpp
+++ b/src/mongo/db/ftdc/controller_test.cpp
@@ -50,6 +50,8 @@
namespace mongo {
+class FTDCControllerTest : public FTDCTest {};
+
class FTDCMetricsCollectorMockTee : public FTDCCollectorInterface {
public:
~FTDCMetricsCollectorMockTee() {
@@ -154,7 +156,7 @@ public:
};
// Test a run of the controller and the data it logs to log file
-TEST(FTDCControllerTest, TestFull) {
+TEST_F(FTDCControllerTest, TestFull) {
unittest::TempDir tempdir("metrics_testpath");
boost::filesystem::path dir(tempdir.path());
@@ -207,7 +209,7 @@ TEST(FTDCControllerTest, TestFull) {
// Test we can start and stop the controller in quick succession, make sure it succeeds without
// assert or fault
-TEST(FTDCControllerTest, TestStartStop) {
+TEST_F(FTDCControllerTest, TestStartStop) {
unittest::TempDir tempdir("metrics_testpath");
boost::filesystem::path dir(tempdir.path());
@@ -228,7 +230,7 @@ TEST(FTDCControllerTest, TestStartStop) {
// Test we can start the controller as disabled, the directory is empty, and then we can succesfully
// enable it
-TEST(FTDCControllerTest, TestStartAsDisabled) {
+TEST_F(FTDCControllerTest, TestStartAsDisabled) {
unittest::TempDir tempdir("metrics_testpath");
boost::filesystem::path dir(tempdir.path());