summaryrefslogtreecommitdiffhomepage
path: root/tests/test-os.cpp
blob: 6177bfa14649be6afe51382c54ab35bd73b6cc76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <gtest/gtest.h>

#include "file.h"

class OsTest: public ::testing::Test
{
protected:
 OsTest(){
 }

 ~OsTest() override{
 }

 void SetUp() override
 {
 }

 void TearDown() override
 {
 }

};