aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRichard Walters <rwalters@digitalstirling.com>2018-07-04 19:59:09 -0700
committerRichard Walters <rwalters@digitalstirling.com>2018-07-04 19:59:09 -0700
commit7d5f93777026f46870f14d85c22872bb42bd40d5 (patch)
tree538f23493ce60bb56a1c90f948b39d628bb1fae8 /test
parenta3e4a2f10afaccab17d9d74a6d4ee3f1265208fc (diff)
Add minor comment
Diffstat (limited to 'test')
-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#"},