standout-test 10.0.0

In-process test harness for applications built with the standout CLI framework
docs.rs failed to build standout-test-10.0.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: standout-test-7.5.1

In-process test harness for apps built on the standout CLI framework.

[TestHarness] is a fluent builder over the injection seams a test needs: env vars, cwd, stdin, clipboard, output mode, color/theme facts on TargetProperties, and tempdir fixtures. run applies every override, calls into the app in-process, and a Drop impl restores everything on success or panic. [TestResult] then exposes what the run wrote to each stream (raw and ANSI-stripped), plus structured facts like style-tag resolutions that a text search can't get at; [assert_page_snapshot!] and [matrix] pin a rendered page across output-mode/color/theme cells.

There is no in-process TTY simulation: [TestHarness::run_process] spawns the real binary and [TestHarness::run_pty] (Unix) gives it a pseudo-terminal. The fixed TargetProperties defaults and the #[serial] rule for tests that mutate env or cwd are in docs/topics/testing.md.