#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
}
}