aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/UtilsTest.cpp
diff options
context:
space:
mode:
authorGravatar reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-02-27 22:06:06 +0000
committerGravatar reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-02-27 22:06:06 +0000
commitd8730ea8b25d692c0656f8cf03f02aecfab2a17c (patch)
tree7a1c8cac5a1433a8ced46bf6dc0f71675e168d76 /tests/UtilsTest.cpp
parented673310e2551e64d8196f7776d7d4c92085f8c2 (diff)
more tests (need more meat in there)
git-svn-id: http://skia.googlecode.com/svn/trunk@97 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/UtilsTest.cpp')
-rw-r--r--tests/UtilsTest.cpp25
1 files changed, 2 insertions, 23 deletions
diff --git a/tests/UtilsTest.cpp b/tests/UtilsTest.cpp
index 810cb51650..f6b02112f0 100644
--- a/tests/UtilsTest.cpp
+++ b/tests/UtilsTest.cpp
@@ -105,26 +105,5 @@ static void TestUTF(skiatest::Reporter* reporter) {
test_search(reporter);
}
-///////////////////////////////////////////////////////////////////////////////
-
-namespace skiatest {
-
- class UtfTest : public Test {
- public:
- static Test* Factory(void*) {
- return SkNEW(UtfTest);
- }
-
- protected:
- virtual void onGetName(SkString* name) {
- name->set("UTF");
- }
-
- virtual void onRun(Reporter* reporter) {
- TestUTF(reporter);
- }
- };
-
- static TestRegistry gReg(UtfTest::Factory);
-}
-
+#include "TestClassDef.h"
+DEFINE_TESTCLASS("UTF", UtfTestClass, TestUTF)