Guidelines for using Assert versus Verify
Asked Answered
H

2

13

I'm new to unit testing, and I'm learning how to use NUnit and Moq. NUnit provides Assert syntax for testing conditions in my unit tests, while Moq provides some Verify functions. To some extent these seem to provide the same functionality.

How do I know when it's more appropriate to use Assert or Verify?

Maybe Assert is better for confirming state, and Verify is better for confirming behavior (Classical versus Mockist)?

Headword answered 27/5, 2010 at 14:4 Comment(0)
G
13

Your assumption about Assert to confirm State and Verify to confirm behavior is correct.

You Assert a result, or a value

You Verify that a method has been called with appropriate parameters.

Gnostic answered 27/5, 2010 at 14:7 Comment(0)
V
0

From selenium point of view, Assert is a validation that if is not meet, it stops the test there and reports as fail. Instead, verify is a validation that if not meet, then continues with the test and it reports the test as failed at the end of the execution.

So, if the validations are dependent, I recommend to use assert. if validations are not dependent, then use verify.

Reference: https://www.softwaretestingmaterial.com/difference-between-assert-and-verify/

Vanda answered 18/7, 2019 at 17:3 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.