template <>
class WireTableBuilder
Defined at line 4518 of file fidling/gen/sdk/fidl/fuchsia.test.manager/fuchsia.test.manager/cpp/fidl/fuchsia.test.manager/cpp/wire_types.h
Public Methods
template <typename First = ::fidl::VectorView<::fidl::StringView>, typename... Args, std::enable_if_t<!std::is_same_v<cpp20::remove_cvref_t<First>, fidl::ObjectView<::fidl::VectorView<::fidl::StringView>>>, int> = 0>
::fidl::WireTableBuilder< ::fuchsia_test_manager::wire::RunOptions> & arguments (First && first, Args &&... args_)
Optional arguments to pass to the test.
Test runners will decide how to pass these arguments to tests.
Defined at line 4532 of file fidling/gen/sdk/fidl/fuchsia.test.manager/fuchsia.test.manager/cpp/fidl/fuchsia.test.manager/cpp/wire_types.h
template <typename First = int64_t, typename... Args, std::enable_if_t<!std::is_same_v<cpp20::remove_cvref_t<First>, fidl::ObjectView<int64_t>>, int> = 0>
::fidl::WireTableBuilder< ::fuchsia_test_manager::wire::RunOptions> & timeout (First && first, Args &&... args_)
Timeout in seconds for the entire suite.
Defined at line 4545 of file fidling/gen/sdk/fidl/fuchsia.test.manager/fuchsia.test.manager/cpp/fidl/fuchsia.test.manager/cpp/wire_types.h
template <typename First = ::fidl::VectorView<::fidl::StringView>, typename... Args, std::enable_if_t<!std::is_same_v<cpp20::remove_cvref_t<First>, fidl::ObjectView<::fidl::VectorView<::fidl::StringView>>>, int> = 0>
::fidl::WireTableBuilder< ::fuchsia_test_manager::wire::RunOptions> & case_filters_to_run (First && first, Args &&... args_)
glob case filter. This filter will match based on glob pattern
[https://en.wikipedia.org/wiki/Glob_(programming)].
Only test cases matching at least one pattern will be run. In
addition, negative filters may be specified by prepending '-'. When
negative filters are specified, test cases matching the negative filter
are excluded.
The behavior of combinations of these filters is as follows:
* When no filters are specified, all test cases are run.
* When only positive filters are specified, test cases that match at
least one filter are run.
* When only negative filters are specified, test cases that match none
of the filters are run.
* When both positive and negative filters are specified, test cases
that match at least one positive filter, but do not match any
negative filters, are run.
For example, given that a suite has the test cases `Foo.Test1`,
`Foo.Test2`, `Bar.Test1`, and `Bar.Test2`:
* The filters `["Foo.*"]` will execute `Foo.Test1` and `Foo.Test2`.
* The filters `["-Foo.*"]` will execute `Bar.Test1` and `Bar.Test2`.
* The filters `["Foo.*", "-*.Test1"]` will execute `Foo.Test2`.
Defined at line 4578 of file fidling/gen/sdk/fidl/fuchsia.test.manager/fuchsia.test.manager/cpp/fidl/fuchsia.test.manager/cpp/wire_types.h
template <typename First = ::fidl::VectorView<::fuchsia_diagnostics::wire::LogInterestSelector>, typename... Args, std::enable_if_t<!std::is_same_v<cpp20::remove_cvref_t<First>, fidl::ObjectView<::fidl::VectorView<::fuchsia_diagnostics::wire::LogInterestSelector>>>, int> = 0>
::fidl::WireTableBuilder< ::fuchsia_test_manager::wire::RunOptions> & log_interest (First && first, Args &&... args_)
Configures the minimum severity for the components under test.
Defined at line 4591 of file fidling/gen/sdk/fidl/fuchsia.test.manager/fuchsia.test.manager/cpp/fidl/fuchsia.test.manager/cpp/wire_types.h
Friends
template <>
class RunOptions