more tests (need more meat in there)



git-svn-id: http://skia.googlecode.com/svn/trunk@97 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PackBitsTest.cpp b/tests/PackBitsTest.cpp
index 6e69f82..fc11fb2 100644
--- a/tests/PackBitsTest.cpp
+++ b/tests/PackBitsTest.cpp
@@ -118,27 +118,10 @@
     }
 }
 
-///////////////////////////////////////////////////////////////////////////////
-
-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)