MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / ABSL_FLAG

Function ABSL_FLAG

testing/testrunner/runner_bin.cc:57–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55 "expression string. For 'file' and 'checked', it's the file path.");
56
57ABSL_FLAG(bool, collect_coverage, false, "Whether to collect code coverage.");
58
59namespace {
60
61using ::cel::expr::conformance::test::TestCase;
62using ::cel::expr::conformance::test::TestSuite;
63using ::cel::test::CelExpressionSource;
64using ::cel::test::CelTestContext;
65using ::cel::test::CoverageIndex;
66using ::cel::test::TestRunner;
67using ::cel::expr::CheckedExpr;
68using ::google::api::expr::runtime::CelExpressionBuilder;
69
70class CelTest : public testing::Test {
71 public:
72 explicit CelTest(std::shared_ptr<TestRunner> test_runner,
73 const TestCase& test_case)
74 : test_runner_(std::move(test_runner)), test_case_(test_case) {}
75
76 void TestBody() override { test_runner_->RunTest(test_case_); }
77

Callers 2

runner_lib_test.ccFile · 0.70
runner_bin.ccFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected