Fields `beforeVerify` and `afterVerify` Not Properly Handled in `VerifySettings`
Closed this issue · 0 comments
makp0 commented
Describe the Bug
The beforeVerify
and afterVerify
settings in VerifySettings
are set by OnVerify
:
However, they are missing in two critical places:
-
Copy Constructor:
They are not copied toCurrentSettings
in the copy constructor.
Verify/src/Verify/VerifySettings.cs
Line 18 in f783079
-
Reset Method:
They are not reset during the reset operation.
Minimal Repro
You can reproduce the issue using the example mentioned in the documentation
Line 162 in f783079