Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
PathOpsTypesTest.cpp
Go to the documentation of this file.
1/*
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 */
8#include "tests/Test.h"
9
10#include <array>
11#include <cstddef>
12
13static const double roughlyTests[][2] = {
14 {5.0402503619650929e-005, 4.3178054475078825e-005}
15};
16
17static const size_t roughlyTestsCount = std::size(roughlyTests);
18
19DEF_TEST(PathOpsRoughly, reporter) {
20 for (size_t index = 0; index < roughlyTestsCount; ++index) {
21 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
23 }
24}
reporter
static bool equal(const SkBitmap &a, const SkBitmap &b)
static const double roughlyTests[][2]
static const size_t roughlyTestsCount
bool RoughlyEqualUlps(float a, float b)
#define DEF_TEST(name, reporter)
Definition Test.h:312
#define REPORTER_ASSERT(r, cond,...)
Definition Test.h:286