Skip to content

Commit ff0fe26

Browse files
committed
Updated README.md with small fix
1 parent 12d4f16 commit ff0fe26

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ namespace MyApp.Tests.Controllers
4646
```
4747

4848
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.
4950

5051
Here are some random examples of what the fluent testing API is capable of:
5152

@@ -64,7 +65,8 @@ MyWebApi
6465
}))
6566
.AndAlso()
6667
.ToNoHandler()
67-
.AndAlso();
68+
.AndAlso()
69+
.ToValidModelState();
6870

6971
// injects dependencies into controller
7072
// and mocks authenticated user

0 commit comments

Comments
 (0)