aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PackBitsTest.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/PackBitsTest.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/PackBitsTest.cpp')
-rw-r--r--tests/PackBitsTest.cpp27
1 files changed, 5 insertions, 22 deletions
diff --git a/tests/PackBitsTest.cpp b/tests/PackBitsTest.cpp
index 6e69f825a4..fc11fb26a9 100644
--- a/tests/PackBitsTest.cpp
+++ b/tests/PackBitsTest.cpp
@@ -118,27 +118,10 @@ static void test_pack8(skiatest::Reporter* reporter) {
}
}
-///////////////////////////////////////////////////////////////////////////////
-
-namespace skiatest {
-
- class PackBitsTest : public Test {
- public:
- static Test* Factory(void*) {
- return SkNEW(PackBitsTest);
- }
-
- protected:
- virtual void onGetName(SkString* name) {
- name->set("PackBits");
- }
-
- virtual void onRun(Reporter* reporter) {
- test_pack8(reporter);
- test_pack16(reporter);
- }
- };
-
- static TestRegistry gReg(PackBitsTest::Factory);
+static void TestPackBits(skiatest::Reporter* reporter) {
+ test_pack8(reporter);
+ test_pack16(reporter);
}
+#include "TestClassDef.h"
+DEFINE_TESTCLASS("PackBits", PackBitsTestClass, TestPackBits)