Index: tests/FontHostStreamTest.cpp |
diff --git a/tests/FontHostStreamTest.cpp b/tests/FontHostStreamTest.cpp |
index e15bd5a355ea0334a8138413cd31e95628a9830d..b9f39b311080aeac3b31414d162e5f44983c1e53 100644 |
--- a/tests/FontHostStreamTest.cpp |
+++ b/tests/FontHostStreamTest.cpp |
@@ -4,9 +4,9 @@ |
* Use of this source code is governed by a BSD-style license that can be |
* found in the LICENSE file. |
*/ |
-#include "SkTypes.h" |
#include "Test.h" |
+#include "TestClassDef.h" |
#include "SkBitmap.h" |
#include "SkCanvas.h" |
#include "SkColor.h" |
@@ -17,8 +17,7 @@ |
#include "SkRect.h" |
#include "SkStream.h" |
#include "SkTypeface.h" |
- |
-/////////////////////////////////////////////////////////////////////////////// |
+#include "SkTypes.h" |
static const SkColor bgColor = SK_ColorWHITE; |
@@ -66,8 +65,7 @@ static bool compare(const SkBitmap& ref, const SkIRect& iref, |
return true; |
} |
-static void test_fontHostStream(skiatest::Reporter* reporter) { |
- |
+DEF_TEST(FontHostStream, reporter) { |
{ |
SkPaint paint; |
paint.setColor(SK_ColorGRAY); |
@@ -112,6 +110,3 @@ static void test_fontHostStream(skiatest::Reporter* reporter) { |
//Make sure the typeface is deleted and removed. |
SkGraphics::PurgeFontCache(); |
} |
- |
-#include "TestClassDef.h" |
-DEFINE_TESTCLASS("FontHost::CreateTypefaceFromStream", FontHostStreamTestClass, test_fontHostStream) |