Home | History | Annotate | Download | only in samples

Lines Matching refs:MyString

46 // In this example, we test the MyString class (a simple string).
49 TEST(MyString, DefaultConstructor) {
50 const MyString s;
80 TEST(MyString, ConstructorFromCString) {
81 const MyString s(kHelloString);
88 TEST(MyString, CopyConstructor) {
89 const MyString s1(kHelloString);
90 const MyString s2 = s1;
95 TEST(MyString, Set) {
96 MyString s;
102 // already in the MyString object.
106 // Can we set the MyString to NULL?