blob: e513c95fb8ead80bba4a5dace41b0002b7ea7883 [file] [log] [blame]
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
Mike Kleinc0bd9f92019-04-23 12:05:21 -05007#include "tests/PathOpsTestCommon.h"
8#include "tests/Test.h"
skia.committer@gmail.comf54ad6f2013-11-02 07:02:02 +00009
10static const double roughlyTests[][2] = {
11 {5.0402503619650929e-005, 4.3178054475078825e-005}
12};
13
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000014static const size_t roughlyTestsCount = SK_ARRAY_COUNT(roughlyTests);
skia.committer@gmail.comf54ad6f2013-11-02 07:02:02 +000015
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +000016DEF_TEST(PathOpsRoughly, reporter) {
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000017 for (size_t index = 0; index < roughlyTestsCount; ++index) {
18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
19 REPORTER_ASSERT(reporter, equal);
20 }
skia.committer@gmail.comf54ad6f2013-11-02 07:02:02 +000021}