We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d4f16 commit ff0fe26Copy full SHA for ff0fe26
README.md
@@ -46,6 +46,7 @@ namespace MyApp.Tests.Controllers
46
```
47
48
The example uses NUnit but you can use whatever testing framework you want.
49
+Basically, the framework throws an unhandled exception if the assertion does not pass and the test fails.
50
51
Here are some random examples of what the fluent testing API is capable of:
52
@@ -64,7 +65,8 @@ MyWebApi
64
65
}))
66
.AndAlso()
67
.ToNoHandler()
- .AndAlso();
68
+ .AndAlso()
69
+ .ToValidModelState();
70
71
// injects dependencies into controller
72
// and mocks authenticated user
0 commit comments