package
2.0.1
Repository: https://github.com/derision-test/go-mockgen.git
Documentation: pkg.go.dev

# Functions

Called asserts that the mock function object was called at least once.
CalledAtNWith asserts that the mock function objects nth call was with a set of arguments matching the given call instance asserter.
CalledN asserts that the mock function object was called exactly n times.
CalledNWith asserts that the mock function object was called exactly n times with a set of arguments matching the given call instance asserter.
CalledOnce asserts that the mock function object was called exactly once.
CalledOnceWith asserts that the mock function object was called exactly once with a set of arguments matching the given call instance asserter.
CalledWith asserts that the mock function object was called at least once with a set of arguments matching the given call instance asserter.
NotCalled asserts that the mock function object was not called.
NotCalledWith asserts that the mock function object was not called with a set of arguments matching the given call instance asserter.
Values returns a new call instance asserter that will match the arguments of each function call positionally with each of the expected values.

# Variables

Skip is a sentinel value which is skipped in a call instance asserter.

# Interfaces

CallInstanceAsserter determines whether or not a set of argument values from a call of a mock function match the test constraints of a particular function call.

# Type aliases

No description provided by the author