summaryrefslogtreecommitdiff
path: root/test/src/UriTests.cpp
blob: 3cb5336bcd13c6c7c27b072cf345bec34bf116a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * @file UriTests.cpp
 *
 * This module contains the unit tests of the Uri::Uri class.
 *
 * © 2018 by Richard Walters
 */

#include <gtest/gtest.h>
#include <Uri/Uri.hpp>

TEST(UriTests, Placeholder) {
    Uri::Uri uri;
    ASSERT_TRUE(true);
}