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_STRINGSTARTSWITH_H
00031 #define MOCKPP_STRINGSTARTSWITH_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 StringStartsWith : public Constraint<StringType>
00048 {
00049 public:
00050
00054 StringStartsWith( const StringType &in_substring )
00055 : substring(in_substring)
00056 {
00057 }
00058
00061 virtual ~StringStartsWith()
00062 {}
00063
00069 virtual bool eval( const StringType &o ) const
00070 {
00071 return o.substr(0, substring.length()) == substring;
00072 }
00073
00078 virtual String describeTo( String &buffer ) const
00079 {
00080 buffer += MOCKPP_PCHAR("a string starting with \"")
00081 + MOCKPP_GET_STRING(substring)
00082 + MOCKPP_PCHAR("\"");
00083 return buffer;
00084 }
00085
00086 private:
00087
00088 StringType substring;
00089 };
00090
00091
00092 MOCKPP_NS_END
00093
00094
00095 #endif // MOCKPP_STRINGSTARTSWITH_H