1 #include "gmock/gmock.h" 2 3 #include <memory> 4 5 #include "winfilewatcher.h" 6 7 using namespace std; 8 9 class FileWatcherBehaviour: public testing::Test { 10 public: 11 shared_ptr<FileWatcher> file_watcher; 12 13 void SetUp() override { 14 #ifdef _WIN32 15 // file_watcher = make_shared<WinFileWatcher>(); 16 #endif 17 } 18 }; 19 20 TEST_F( FileWatcherBehaviour, DetectsAnAppendedFile ) { 21 EXPECT_EQ(1, 1); 22 } 23