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