Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil MacIntosh <neilmac@microsoft.com>2016-08-10 04:07:17 +0300
committerNeil MacIntosh <neilmac@microsoft.com>2016-08-10 04:07:17 +0300
commitf9f08a56fa08addbd96ab90430735e4e044a3af1 (patch)
treef17a6e8d707f9fd979e1133c1d4d51635b7edf13 /tests/string_span_tests.cpp
parent9ab3a2ac3960145c309e3935851ee5e4337c93ee (diff)
Added test for Issue #305.
Diffstat (limited to 'tests/string_span_tests.cpp')
-rw-r--r--tests/string_span_tests.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/string_span_tests.cpp b/tests/string_span_tests.cpp
index 876886a..ca60e4b 100644
--- a/tests/string_span_tests.cpp
+++ b/tests/string_span_tests.cpp
@@ -18,6 +18,7 @@
#include <cstdlib>
#include <string_span.h>
#include <vector>
+#include <map>
using namespace std;
using namespace gsl;
@@ -942,7 +943,13 @@ SUITE(string_span_tests)
CHECK(*(str + 3) == L'\0');
}
}
+ }
+ TEST(Issue305)
+ {
+ std::map<gsl::cstring_span<>, int> foo = { { "foo", 0 },{ "bar", 1 } };
+ CHECK(foo["foo"] == 0);
+ CHECK(foo["bar"] == 1);
}
}