#include "gmock/gmock.h" #include #include "platformfilewatcher.h" using namespace std; class FileWatcherBehaviour: public testing::Test { public: shared_ptr file_watcher; void SetUp() override { file_watcher = make_shared(); } }; TEST_F( FileWatcherBehaviour, DetectsAnAppendedFile ) { EXPECT_EQ(1, 1); }