00001
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #ifndef MOCKPP_STRINGCONTAINS_H
00035 #define MOCKPP_STRINGCONTAINS_H
00036
00037 #include <mockpp/mockpp.h>
00038
00039 #include <mockpp/constraint/Constraint.h>
00040 #include <mockpp/compat/Formatter.h>
00041
00042
00043 MOCKPP_NS_START
00044
00045
00050 template <typename StringType = MOCKPP_NS::String>
00051 class StringContains : public Constraint<StringType>
00052 {
00053 public:
00054
00058 StringContains( const StringType &in_substring )
00059 : substring(in_substring)
00060 {
00061 }
00062
00065 virtual ~StringContains()
00066 {}
00067
00073 virtual bool eval( const StringType &o ) const
00074 {
00075 return o.find(substring) != StringType::npos;
00076 }
00077
00082 virtual String describeTo( String &buffer ) const
00083 {
00084 buffer += MOCKPP_PCHAR("a string containing \"")
00085 + MOCKPP_GET_STRING(substring)
00086 + MOCKPP_PCHAR("\"");
00087 return buffer;
00088 }
00089
00090 private:
00091
00092 StringType substring;
00093 };
00094
00095
00096 MOCKPP_NS_END
00097
00098
00099 #endif // MOCKPP_STRINGCONTAINS_H