Verify icon indicating copy to clipboard operation
Verify copied to clipboard

Verify is a snapshot tool that simplifies the assertion of complex data models and documents.

Results 38 Verify issues
Sort by recently updated
recently updated
newest added

#### Is the feature request related to a problem The problem is that there is currently no good way to include specific types/properties in the Verify output if they are...

This Unit test runs fine: ```C# [TestMethod] public async Task Test() { var cts = new CancellationTokenSource(); cts.Cancel(); var test = new TaskCanceledException("test", null, cts.Token); //cts.Dispose(); await Verify(test); } ```...

#### Is the feature request related to a problem I want to verify a zip file containing .xml files, some .xml files are at the root of the zip and...

To implement functionality in #1034

#### Describe the bug Verify acts in a strange way when there are two `Verify` calls with the same snapshot prefix but a different file extension. I was expecting file...

#### Is the feature request related to a problem I'm using VerifyDirectory to validate the output of some process that generates a set of files and some of the files...

Fixes #1184 Introduce an attribute `[UsesVerify]` for MSTest so that tests can set up Verify without needing to use the `VerifyBase` class. Relaxing the base class requirement makes it easier...

#### Is the feature request related to a problem Currently `VerifyJson` performs the following actions * Convert to `JToken` (if necessary). * Apply [ignore member by name](/docs/serializer-settings.md#ignore-member-by-name) for keys. *...