aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/test/lltut.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/test/lltut.h')
-rw-r--r--linden/indra/test/lltut.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/test/lltut.h b/linden/indra/test/lltut.h
index ba3df24..c8fb6bc 100644
--- a/linden/indra/test/lltut.h
+++ b/linden/indra/test/lltut.h
@@ -87,8 +87,14 @@ namespace tut
87 void ensure_starts_with(const std::string& msg, 87 void ensure_starts_with(const std::string& msg,
88 const std::string& actual, const std::string& expectedStart); 88 const std::string& actual, const std::string& expectedStart);
89 89
90 void ensure_ends_with(const std::string& msg,
91 const std::string& actual, const std::string& expectedEnd);
92
90 void ensure_contains(const std::string& msg, 93 void ensure_contains(const std::string& msg,
91 const std::string& actual, const std::string& expectedSubString); 94 const std::string& actual, const std::string& expectedSubString);
95
96 void ensure_does_not_contain(const std::string& msg,
97 const std::string& actual, const std::string& expectedSubString);
92} 98}
93 99
94 100