- test that writing a buffer with no changes results in the identical file being written
13 lines
250 B
C++
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();
|
|
}
|