/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
toolchain/parse/coverage_test.cpp
32 строки
1 KB
Geoff Romer
Make the tree structure more explicit in parse dumps (#7591)
31 июл 2026, 19:44
Не верифицирован
31 июл 2026, 19:44
6429c16
Код
Авторство
О чём код?
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #include <gtest/gtest.h> #include "absl/flags/flag.h" #include "toolchain/parse/node_kind.h" #include "toolchain/testing/coverage_helper.h" ABSL_FLAG(std::string, testdata_manifest, "", "A path to a file containing repo-relative names of test files."); namespace Carbon::Parse { namespace { constexpr NodeKind NodeKinds[] = { #define CARBON_PARSE_NODE_KIND(Name) NodeKind::Name, #include "toolchain/parse/node_kind.def" }; constexpr NodeKind UntestedNodeKinds[] = {NodeKind::Placeholder}; // Looks for node kinds that aren't covered by a file_test. TEST(Coverage, NodeKind) { Testing::TestKindCoverage(absl::GetFlag(FLAGS_testdata_manifest), R"(─(\w+))", llvm::ArrayRef(NodeKinds), llvm::ArrayRef(UntestedNodeKinds)); } } // namespace } // namespace Carbon::Parse