00001
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef MOCKPP_STRINGENDSWITH_H
00031 #define MOCKPP_STRINGENDSWITH_H
00032
00033 #include <mockpp/mockpp.h>
00034
00035 #include <mockpp/constraint/Constraint.h>
00036 #include <mockpp/compat/Formatter.h>
00037
00038
00039 MOCKPP_NS_START
00040
00041
00046 template <typename StringType = MOCKPP_NS::String>
00047 class StringEndsWith : public Constraint<StringType>
00048 {
00049 public:
00050
00054 StringEndsWith( const StringType &in_substring )
00055 : substring(in_substring)
00056 {
00057 }
00058
00061 virtual ~StringEndsWith()
00062 {}
00063
00069 virtual bool eval( const StringType &o ) const
00070 {
00071 unsigned l = substring.length();
00072 unsigned ol = o.length();
00073 if (ol < l)
00074 return false;
00075
00076 return o.substr(ol - l, l) == substring;
00077 }
00078
00083 virtual String describeTo( String &buffer ) const
00084 {
00085 buffer += MOCKPP_PCHAR("a string ending with \"")
00086 + MOCKPP_GET_STRING(substring)
00087 + MOCKPP_PCHAR("\"");
00088 return buffer;
00089 }
00090
00091 private:
00092
00093 StringType substring;
00094 };
00095
00096
00097 MOCKPP_NS_END
00098
00099
00100 #endif // MOCKPP_STRINGENDSWITH_H