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); }