aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/DebugCanvasTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/DebugCanvasTest.cpp')
-rw-r--r--tests/DebugCanvasTest.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/DebugCanvasTest.cpp b/tests/DebugCanvasTest.cpp
deleted file mode 100644
index ecc7c75f18..0000000000
--- a/tests/DebugCanvasTest.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "Test.h"
-#include "debugger/SkDebugCanvas.h"
-
-static void test_debugRect(skiatest::Reporter* reporter) {
- SkDebugCanvas canvas(100, 100);
- canvas.drawRect(SkRect::MakeWH(100, 100), SkPaint());
-
- const SkTDArray<SkDrawCommand*> cmds = canvas.getDrawCommands();
- REPORTER_ASSERT(reporter, cmds.count() > 0);
-
- const SkTDArray<SkString*>& result = *cmds[0]->Info();
- REPORTER_ASSERT(reporter, result.count() > 0);
-
- SkString expected("SkRect: (0, 0, 100, 100)");
- REPORTER_ASSERT(reporter, expected == *result[0]);
-}
-
-static void TestDebugCanvas(skiatest::Reporter* reporter) {
- test_debugRect(reporter);
-}
-
-#include "TestClassDef.h"
-DEFINE_TESTCLASS("DebugCanvas", TestDebugCanvasClass, TestDebugCanvas)