1
1
# fluentassert
2
2
3
- > Extensible, type-safe, fluent assertion Go library.
3
+ > [ !CAUTION]
4
+ > [ Avoid using assertion libraries] ( https://go.dev/wiki/TestComments#assert-libraries ) .
5
+ > Instead, use [ ` go-cmp ` ] ( https://github.com/google/go-cmp )
6
+ > and write custom test helpers.
7
+ > Using the popular [ ` testify ` ] ( https://github.com/stretchr/testify )
8
+ > may be also an acceptable choice,
9
+ > especially together with [ ` testifylint ` ] ( https://github.com/Antonboom/testifylint )
10
+ > to avoid common mistakes.
11
+ > Use this library if you still want to.
12
+ > Consider yourself warned.
4
13
5
14
[ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/fluentassert/verify.svg )] ( https://pkg.go.dev/github.com/fluentassert/verify )
6
15
[ ![ Keep a Changelog] ( https://img.shields.io/badge/changelog-Keep%20a%20Changelog-%23E05735 )] ( CHANGELOG.md )
@@ -22,17 +31,6 @@ The generics (type parameters) make the usage type-safe.
22
31
23
32
The library is [ extensible] ( #extensibility ) by design.
24
33
25
- > [ !CAUTION]
26
- > [ Avoid using assertion libraries] ( https://go.dev/wiki/TestComments#assert-libraries ) .
27
- > Instead, use [ ` go-cmp ` ] ( https://github.com/google/go-cmp )
28
- > and write custom test helpers.
29
- > Using the popular [ ` testify ` ] ( https://github.com/stretchr/testify )
30
- > may be also an acceptable choice,
31
- > especially together with [ ` testifylint ` ] ( https://github.com/Antonboom/testifylint )
32
- > to avoid common mistakes.
33
- > Use this library if you still want to.
34
- > Consider yourself warned.
35
-
36
34
### Quick start
37
35
38
36
``` go
0 commit comments