Unknwon 2fd69f13d9 vendor: check in vendors | 7 年之前 | |
---|---|---|
.. | ||
LICENSE | 7 年之前 | |
README.md | 7 年之前 | |
all_of.go | 7 年之前 | |
any.go | 7 年之前 | |
any_of.go | 7 年之前 | |
contains.go | 7 年之前 | |
deep_equals.go | 7 年之前 | |
elements_are.go | 7 年之前 | |
equals.go | 7 年之前 | |
error.go | 7 年之前 | |
greater_or_equal.go | 7 年之前 | |
greater_than.go | 7 年之前 | |
has_same_type_as.go | 7 年之前 | |
has_substr.go | 7 年之前 | |
identical_to.go | 7 年之前 | |
less_or_equal.go | 7 年之前 | |
less_than.go | 7 年之前 | |
matcher.go | 7 年之前 | |
matches_regexp.go | 7 年之前 | |
new_matcher.go | 7 年之前 | |
not.go | 7 年之前 | |
panics.go | 7 年之前 | |
pointee.go | 7 年之前 | |
transform_description.go | 7 年之前 |
oglematchers
is a package for the Go programming language containing a set of
matchers, useful in a testing or mocking framework, inspired by and mostly
compatible with Google Test for C++ and
Google JS Test. The package is used by the
ogletest testing framework and oglemock mocking
framework, which may be more directly useful to you, but can be generically used
elsewhere as well.
A "matcher" is simply an object with a Matches
method defining a set of golang
values matched by the matcher, and a Description
method describing that set.
For example, here are some matchers:
// Numbers
Equals(17.13)
LessThan(19)
// Strings
Equals("taco")
HasSubstr("burrito")
MatchesRegex("t.*o")
// Combining matchers
AnyOf(LessThan(17), GreaterThan(19))
There are lots more; see here for a reference. You can also add
your own simply by implementing the oglematchers.Matcher
interface.
First, make sure you have installed Go 1.0.2 or newer. See here for instructions.
Use the following command to install oglematchers
and keep it up to date:
go get -u github.com/smartystreets/assertions/internal/oglematchers
See here for documentation. Alternatively, you can install the
package and then use godoc
:
godoc github.com/smartystreets/assertions/internal/oglematchers