summaryrefslogtreecommitdiffhomepage
path: root/tests/test-url.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-url.cpp
parent0c0d858e4f9423fb9697bad9a012cb67fcee75e0 (diff)
Added tests
Diffstat (limited to 'tests/test-url.cpp')
-rw-r--r--tests/test-url.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/test-url.cpp b/tests/test-url.cpp
new file mode 100644
index 0000000..2f5075a
--- /dev/null
+++ b/tests/test-url.cpp
@@ -0,0 +1,22 @@
+#include <gtest/gtest.h>
+
+#include "file.h"
+
+class URLTest: public ::testing::Test
+{
+protected:
+ URLTest(){
+ }
+
+ ~URLTest() override{
+ }
+
+ void SetUp() override
+ {
+ }
+
+ void TearDown() override
+ {
+ }
+
+};