chromium/third_party/blink/renderer/core/svg/svg_path_parser_test.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/svg/svg_path_parser.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/svg/svg_path_string_builder.h"
#include "third_party/blink/renderer/core/svg/svg_path_string_source.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

namespace {

bool ParsePath(const char* input, String& output) {}

#define VALID

#define MALFORMED

TEST(SVGPathParserTest, Simple) {}

#undef MALFORMED
#undef VALID

SVGParsingError ParsePathWithError(const char* input) {}

#define EXPECT_ERROR

TEST(SVGPathParserTest, ErrorReporting) {}

#undef EXPECT_ERROR

}  // namespace

}  // namespace blink