aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/src/UriTests.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp
index 106aade..efba4f1 100644
--- a/test/src/UriTests.cpp
+++ b/test/src/UriTests.cpp
@@ -771,6 +771,7 @@ TEST(UriTests, GenerateString) {
std::string expectedUriString;
};
const std::vector< TestVector > testVectors{
+ // general test vectors
{"http", "bob", "www.example.com", true, 8080, {"", "abc", "def"}, true, "foobar", true, "ch2", "http://bob@www.example.com:8080/abc/def?foobar#ch2"},
{"http", "bob", "www.example.com", true, 0, {}, true, "foobar", true, "ch2", "http://bob@www.example.com:0?foobar#ch2"},
{"http", "bob", "www.example.com", true, 0, {}, true, "foobar", true, "", "http://bob@www.example.com:0?foobar#"},