go-cmp alternatives and similar packages
Based on the "Testing Frameworks" category.
Alternatively, view go-cmp alternatives based on common mentions on social networks and blogs.
-
gnomock
integration testing with real dependencies (database, cache, even Kubernetes or AWS) running in Docker, without mocks. -
gotest.tools
A collection of packages to augment the go testing package and support common patterns. -
embedded-postgres
Run a real Postgres database locally on Linux, OSX or Windows as part of another Go application or test. -
gospecify
This provides a BDD syntax for testing your Go code. It should be familiar to anybody who has used libraries such as rspec. -
assert
Basic Assertion Library used along side native go testing, with building blocks for custom assertions -
Hamcrest
fluent framework for declarative Matcher objects that, when applied to input values, produce self-describing results. -
gosuite
Brings lightweight test suites with setup/teardown facilities to testing by leveraging Go1.7's Subtests
Get performance insights in less than 4 minutes
Do you think we are missing an alternative of go-cmp or a related project?
README
Package for equality of Go values
This package is intended to be a more powerful and safer alternative to
reflect.DeepEqual
for comparing whether two values are semantically equal.
The primary features of cmp
are:
When the default behavior of equality does not suit the needs of the test, custom equality functions can override the equality operation. For example, an equality function may report floats as equal so long as they are within some tolerance of each other.
Types that have an
Equal
method may use that method to determine equality. This allows package authors to determine the equality operation for the types that they define.If no custom equality functions are used and no
Equal
method is defined, equality is determined by recursively comparing the primitive kinds on both values, much likereflect.DeepEqual
. Unlikereflect.DeepEqual
, unexported fields are not compared by default; they result in panics unless suppressed by using anIgnore
option (seecmpopts.IgnoreUnexported
) or explicitly compared using theAllowUnexported
option.
See the documentation for more information.
This is not an official Google product.
Install
go get -u github.com/google/go-cmp/cmp
License
BSD - See LICENSE file
*Note that all licence references and agreements mentioned in the go-cmp README section above
are relevant to that project's source code only.