Zig Testing Purpose Guide agents through Zig's testing system: and , comptime testing patterns, test filters, the test allocator for leak detection, and Zig's built-in fuzz testing introduced in 0.14. Triggers - "How do I write and run tests in Zig?" - "How do I filter which Zig tests run?" - "How do I detect memory leaks in Zig tests?" - "How do I write comptime tests in Zig?" - "How do I use Zig's built-in fuzzer?" - "How do I test a Zig library?" Workflow 1. Writing and running tests 2. build.zig test configuration 3. Test allocator — leak detection The wraps a in test mode and reports lea…