Tags » software testing
TIL: Use the
-v
flag to get verbose output from Go testsThis prints all
t.Log
andt.Logf
calls, even if the test succeeds or times out.TIL: Repeatedly run flaky Go tests with
stress
It runs your test hundreds of times, which can be useful for finding flaky failures.
How I test Rust command-line apps with
assert_cmd
Some practical examples of how this handy crate lets me write clear, readable tests.