Please enable JavaScript.
Coggle requires JavaScript to display documents.
AOUT 2 - Coggle Diagram
AOUT 2
NUnit
Attributes
-
-
-
[SetUp]
the author does not recomend using this one because it affects readibiilty, he prefers factory methods
-
-
-
-
-
-
Actions
Arrange
objects, creating and setting them up as necessary
-
-
Classes
Assert
-
-
has a message parameter
you should NEVER use it, your test NAME shoud be enough
Fluent syntax
Assert.That(...)
example
Assert.That(ex.Message, Is.StringContaining("filename hast to be provided"))
-
-
-
-
-