11# fluentassert
22
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.
413
514[ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/fluentassert/verify.svg )] ( https://pkg.go.dev/github.com/fluentassert/verify )
615[ ![ 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.
2231
2332The library is [ extensible] ( #extensibility ) by design.
2433
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-
3634### Quick start
3735
3836``` go
0 commit comments