Gitote bc701732b4 Initial Commit 6 năm trước cách đây
..
LICENSE bc701732b4 Initial Commit 6 năm trước cách đây
README.md bc701732b4 Initial Commit 6 năm trước cách đây
all_of.go bc701732b4 Initial Commit 6 năm trước cách đây
any.go bc701732b4 Initial Commit 6 năm trước cách đây
any_of.go bc701732b4 Initial Commit 6 năm trước cách đây
contains.go bc701732b4 Initial Commit 6 năm trước cách đây
deep_equals.go bc701732b4 Initial Commit 6 năm trước cách đây
elements_are.go bc701732b4 Initial Commit 6 năm trước cách đây
equals.go bc701732b4 Initial Commit 6 năm trước cách đây
error.go bc701732b4 Initial Commit 6 năm trước cách đây
greater_or_equal.go bc701732b4 Initial Commit 6 năm trước cách đây
greater_than.go bc701732b4 Initial Commit 6 năm trước cách đây
has_same_type_as.go bc701732b4 Initial Commit 6 năm trước cách đây
has_substr.go bc701732b4 Initial Commit 6 năm trước cách đây
identical_to.go bc701732b4 Initial Commit 6 năm trước cách đây
less_or_equal.go bc701732b4 Initial Commit 6 năm trước cách đây
less_than.go bc701732b4 Initial Commit 6 năm trước cách đây
matcher.go bc701732b4 Initial Commit 6 năm trước cách đây
matches_regexp.go bc701732b4 Initial Commit 6 năm trước cách đây
new_matcher.go bc701732b4 Initial Commit 6 năm trước cách đây
not.go bc701732b4 Initial Commit 6 năm trước cách đây
panics.go bc701732b4 Initial Commit 6 năm trước cách đây
pointee.go bc701732b4 Initial Commit 6 năm trước cách đây
transform_description.go bc701732b4 Initial Commit 6 năm trước cách đây

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