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

#include "file.h"

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

 ~MimeTest() override{
 }

 void SetUp() override
 {
 }

 void TearDown() override
 {
 }

};