From f32322b9cefd950013ead6f914678580eff20b5b Mon Sep 17 00:00:00 2001 From: "reed@google.com" Date: Wed, 16 Oct 2013 15:14:04 +0000 Subject: add disabled tests, in pref for experimental isRect behavior BUG= R=bsalomon@google.com Review URL: https://codereview.chromium.org/27513003 git-svn-id: http://skia.googlecode.com/svn/trunk@11810 2bbb7eff-a529-9590-31e7-b0007b416f81 --- tests/PathTest.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'tests/PathTest.cpp') diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp index 61f06e099e..c47b2c4858 100644 --- a/tests/PathTest.cpp +++ b/tests/PathTest.cpp @@ -1312,9 +1312,31 @@ static void test_conservativelyContains(skiatest::Reporter* reporter) { } +static void test_isRect_open_close(skiatest::Reporter* reporter) { + SkPath path; + bool isClosed; + + path.moveTo(0, 0); path.lineTo(1, 0); path.lineTo(1, 1); path.lineTo(0, 1); + + if (false) { + // I think these should pass, but isRect() doesn't behave + // this way... yet + REPORTER_ASSERT(reporter, path.isRect(NULL, NULL)); + REPORTER_ASSERT(reporter, path.isRect(&isClosed, NULL)); + REPORTER_ASSERT(reporter, !isClosed); + } + + path.close(); + REPORTER_ASSERT(reporter, path.isRect(NULL, NULL)); + REPORTER_ASSERT(reporter, path.isRect(&isClosed, NULL)); + REPORTER_ASSERT(reporter, isClosed); +} + // Simple isRect test is inline TestPath, below. // test_isRect provides more extensive testing. static void test_isRect(skiatest::Reporter* reporter) { + test_isRect_open_close(reporter); + // passing tests (all moveTo / lineTo... SkPoint r1[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}}; SkPoint r2[] = {{1, 0}, {1, 1}, {0, 1}, {0, 0}}; -- cgit v1.2.3