@simoncropp In Verify is there a way to have the snapshots in this structure:

`{PathToTestClass}/{TestMethodName}.verified.txt`

๐Ÿ“ MyFolder
โ”œโ”€โ”€ ๐Ÿ“„ MyTestClass.cs
โ””โ”€โ”€ ๐Ÿ“ MyTestClass.Snapshots
โ”œโ”€โ”€ ๐Ÿ“„ MyTestMethodName.verified.txt
โ””โ”€โ”€ ๐Ÿ“„ MyTestMethodName.received.txt

@bitbonk @simoncropp yes, an example of changing paths is Spectre.Verify.Extensions
https://github.com/spectresystems/spectre.verify.extensions

@devlead @simoncropp It seems that examples uses `DerivePathInfo` that I am also using.

It looks like there is no way to remove the type name completely from the `*verified.txt` file.

Line 19 from the screenshot shows the problem.

As a result my snapshot files always start with two dots:

`..MethodName.verified.txt`

Verify/docs/mdsource/naming.source.md at main ยท VerifyTests/Verify

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

GitHub