diff options
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/UriTests.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp new file mode 100644 index 0000000..3cb5336 --- /dev/null +++ b/test/src/UriTests.cpp @@ -0,0 +1,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); +} |