summaryrefslogtreecommitdiffhomepage
path: root/tests/test-url.cpp
blob: 2f5075a22d7d94bc6fd5fab922218c676bef2b99 (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 URLTest: public ::testing::Test
{
protected:
 URLTest(){
 }

 ~URLTest() override{
 }

 void SetUp() override
 {
 }

 void TearDown() override
 {
 }

};