Lines Matching refs:spec_str
406 void VerifyFalse(const std::string& spec_str) { in VerifyFalse() argument
407 Verify(spec_str, false, false, false, {}); in VerifyFalse()
411 const std::string& spec_str, in VerifyTrue() argument
415 Verify(spec_str, true, startup_first, continuous, periods); in VerifyTrue()
419 const std::string& spec_str, in Verify() argument
425 std::optional<ReportingPeriodSpec> spec = ReportingPeriodSpec::Parse(spec_str, &error_msg); in Verify()
427 ASSERT_EQ(valid, spec.has_value()) << spec_str; in Verify()
429 ASSERT_EQ(spec->spec, spec_str) << spec_str; in Verify()
430 ASSERT_EQ(spec->report_startup_first, startup_first) << spec_str; in Verify()
431 ASSERT_EQ(spec->continuous_reporting, continuous) << spec_str; in Verify()
432 ASSERT_EQ(spec->periods_seconds, periods) << spec_str; in Verify()