PathOpsTypesTest.cpp 617 B

123456789101112131415161718192021
  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. */
  7. #include "tests/PathOpsTestCommon.h"
  8. #include "tests/Test.h"
  9. static const double roughlyTests[][2] = {
  10. {5.0402503619650929e-005, 4.3178054475078825e-005}
  11. };
  12. static const size_t roughlyTestsCount = SK_ARRAY_COUNT(roughlyTests);
  13. DEF_TEST(PathOpsRoughly, reporter) {
  14. for (size_t index = 0; index < roughlyTestsCount; ++index) {
  15. bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
  16. REPORTER_ASSERT(reporter, equal);
  17. }
  18. }