jes/test/src/main.cc
Josh Holtrop 10a0b33dbe Add Buffer unit tests
- test that writing a buffer with no changes results in the identical
  file being written
2016-07-24 17:25:21 -04:00

13 lines
250 B
C++

#include "gtest/gtest.h"
#include "System.h"
#include <sys/stat.h>
#include <sys/types.h>
int main(int argc, char * argv[])
{
::testing::InitGoogleTest(&argc, argv);
System::init();
mkdir("test/tmp", 0777);
return RUN_ALL_TESTS();
}