You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Fisher Yu 1d44cdb3dd
gogs init
6 years ago
..
LICENSE gogs init 6 years ago
README.md gogs init 6 years ago
all_of.go gogs init 6 years ago
any.go gogs init 6 years ago
any_of.go gogs init 6 years ago
contains.go gogs init 6 years ago
deep_equals.go gogs init 6 years ago
elements_are.go gogs init 6 years ago
equals.go gogs init 6 years ago
error.go gogs init 6 years ago
greater_or_equal.go gogs init 6 years ago
greater_than.go gogs init 6 years ago
has_same_type_as.go gogs init 6 years ago
has_substr.go gogs init 6 years ago
identical_to.go gogs init 6 years ago
less_or_equal.go gogs init 6 years ago
less_than.go gogs init 6 years ago
matcher.go gogs init 6 years ago
matches_regexp.go gogs init 6 years ago
new_matcher.go gogs init 6 years ago
not.go gogs init 6 years ago
panics.go gogs init 6 years ago
pointee.go gogs init 6 years ago
transform_description.go gogs init 6 years ago

README.md

GoDoc

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.

Installation

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

Documentation

See here for documentation. Alternatively, you can install the package and then use godoc:

godoc github.com/smartystreets/assertions/internal/oglematchers