diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-06-02 19:44:09 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-06-02 19:44:09 -0700 |
commit | 5e69673563dd72f23dabc1f6d86ad684710b23bb (patch) | |
tree | 43471032352a770c7d7eb4aff05a8c00c37d9184 /test/src |
Initial Revision.
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); +} |