Module test_environment
Structs
- Configuration values for
TestEnvironment::private_context_opts. Meant to be used by callingnewand then chaining methods setting each value, e.g.:env.private_context_opts(PrivateContextOptions::new().at_anchor_block_number(5), ...); - This represents an Aztec test run, and contains all the methods utilized during one to interact with the network and manipulate its state (e.g. create accounts, make contract calls, etc.). Each test is expected to have its own instance of
TestEnvironment, as tests execute in parallel and so cannot share this object.