What problem does it solve? Detecting unintended changes in rendered output, serialized objects, HTTP responses, and public API surfaces is tedious with manual assertions. This Skill provides patterns for snapshot testing with Verify, where output is compared against human-approved baselines and any change requires explicit review. ## Core Features & Use Cases - Snapshot Verification: Verify objects, strings, streams, HTML emails, and HTTP responses against approved .verified. baseline files. - Scrubbing Non-Deterministic Values: Automatically replace dates, GUIDs, tokens, and machine names with stable placeholders so tests stay deterministic. - API Surface Approval: Capture the full public API of an assembly so breaking changes require explicit approval. - Use Case: When rendering an order confirmation email, snapshot the HTML output so any CSS or template regression fails the test and shows a diff for review. ## Quick Start Add snapshot tests to my .NET test project using Verify to verify the rendered output of my email templates and scrub non-deterministic values.