summaryrefslogtreecommitdiffhomepage
path: root/tests/test-mime.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-05 10:37:41 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-05 10:37:41 +0100
commit0f2ac0c4311e4429bfa4ede1d96ce467b5dceb5b (patch)
treeb4dbe07617ca818b182a18f27d0d4e6bafc91841 /tests/test-mime.cpp
parent0c0d858e4f9423fb9697bad9a012cb67fcee75e0 (diff)
Added tests
Diffstat (limited to 'tests/test-mime.cpp')
-rw-r--r--tests/test-mime.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/test-mime.cpp b/tests/test-mime.cpp
new file mode 100644
index 0000000..2d28a36
--- /dev/null
+++ b/tests/test-mime.cpp
@@ -0,0 +1,23 @@
+#include <gtest/gtest.h>
+
+#include "file.h"
+
+class MimeTest: public ::testing::Test
+{
+protected:
+ MimeTest(){
+ }
+
+ ~MimeTest() override{
+ }
+
+ void SetUp() override
+ {
+ }
+
+ void TearDown() override
+ {
+ }
+
+};
+