Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: tests/StringTest.cpp

Issue 14773022: Revert r9081 (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/core/SkString.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/StringTest.cpp
===================================================================
--- tests/StringTest.cpp (revision 9081)
+++ tests/StringTest.cpp (working copy)
@@ -93,18 +93,6 @@
REPORTER_ASSERT(reporter, a.equals("hello world") && a == e && a == f);
a.reset();
- a.append(SkString("string"));
- a.append("text");
- a.append('c');
- REPORTER_ASSERT(reporter, a.equals("stringtextc"));
-
- a.reset();
- a += 'c';
- a += "text";
- a += SkString("string");
- REPORTER_ASSERT(reporter, a.equals("ctextstring"));
-
- a.reset();
b.resize(0);
REPORTER_ASSERT(reporter, a.isEmpty() && b.isEmpty() && a == b);
« no previous file with comments | « include/core/SkString.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698