Struct endbasic_std::testutils::Checker [−][src]
pub struct Checker<'a> { /* fields omitted */ }
Expand description
Captures expectations about the execution of a command and validates them.
Implementations
Expects the invocation to have successfully terminated with the given stop_reason
.
If not called, defaults to expecting that execution terminated due to EOF. This or
expect_err
can only be called once.
Expects the invocation to have erroneously terminated with the exact message
.
If not called, defaults to expecting that execution terminated due to EOF. This or
expect_err
can only be called once.
Adds the name
array as an array to expect in the final state of the machine. The array
will be tested to have the same subtype
and dimensions
, as well as specific contents
.
The contents are provided as a collection of subscripts/value pairs to assign to the
expected array.
Adds the name
array as an array to expect in the final state of the machine. The array
will be tested to have the same subtype
and only one dimension with contents
.
Adds a file to expect in the drive with a name
and specific content
.
name
must be the absolute path to the file that is expected, including the drive name.
Adds the out
sequence of captured outputs to the expected outputs of the execution.
Adds the out
sequence of strings to the expected outputs of the execution.
This is a convenience function around expect_output
that wraps all incoming strings in
CapturedOut::Print
objects, as these are the most common outputs in tests.
Sets the expected contents of the stored program to text
. Can only be called once and
text
must not be empty.
Adds the name
/value
pair as a variable to expect in the final state of the machine.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Checker<'a>
impl<'a> !UnwindSafe for Checker<'a>