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

Unified Diff: src/shared/test_case.h

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « src/shared/shared.gyp ('k') | src/shared/test_case.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/test_case.h
diff --git a/src/shared/test_case.h b/src/shared/test_case.h
index 99fabb4628b2d8c7533280c5d852cbdbd2cde42d..f492c85048b0634b23864a353c18cdc1e6ac0a90 100644
--- a/src/shared/test_case.h
+++ b/src/shared/test_case.h
@@ -9,7 +9,7 @@
#define TEST_CASE(name) \
static void Test##name(); \
- static const fletch::TestCase kRegister##name(Test##name, #name); \
+ static const dartino::TestCase kRegister##name(Test##name, #name); \
static void Test##name()
#define TEST_EXPORT(method) \
@@ -17,7 +17,7 @@
__attribute__((visibility("default"))) method \
}
-namespace fletch {
+namespace dartino {
class TestCase {
public:
@@ -42,6 +42,6 @@ class TestCase {
DISALLOW_COPY_AND_ASSIGN(TestCase);
};
-} // namespace fletch
+} // namespace dartino
#endif // SRC_SHARED_TEST_CASE_H_
« no previous file with comments | « src/shared/shared.gyp ('k') | src/shared/test_case.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698