diff options
| author | Teddy Wing | 2015-06-06 19:25:17 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2015-06-06 19:25:17 -0400 | 
| commit | 1135764727f3dc525d0f674c784edbc81cc786f3 (patch) | |
| tree | 5c402c88d3a07a3cde84237ead5829bda28f3e25 /vendor/_nuts/github.com/stretchr/testify/mock/doc.go | |
| download | New-House-on-the-Block-1135764727f3dc525d0f674c784edbc81cc786f3.tar.bz2 | |
Initial commit. Install coinbase-go.
* Use nut for vendored dependencies
* Install coinbase-go to interact with the Coinbase API
Diffstat (limited to 'vendor/_nuts/github.com/stretchr/testify/mock/doc.go')
| -rw-r--r-- | vendor/_nuts/github.com/stretchr/testify/mock/doc.go | 43 | 
1 files changed, 43 insertions, 0 deletions
| diff --git a/vendor/_nuts/github.com/stretchr/testify/mock/doc.go b/vendor/_nuts/github.com/stretchr/testify/mock/doc.go new file mode 100644 index 0000000..dd38507 --- /dev/null +++ b/vendor/_nuts/github.com/stretchr/testify/mock/doc.go @@ -0,0 +1,43 @@ +// Provides a system by which it is possible to mock your objects and verify calls are happening as expected. +// +// Example Usage +// +// The mock package provides an object, Mock, that tracks activity on another object.  It is usually +// embedded into a test object as shown below: +// +//   type MyTestObject struct { +//     // add a Mock object instance +//     mock.Mock +// +//     // other fields go here as normal +//   } +// +// When implementing the methods of an interface, you wire your functions up +// to call the Mock.Called(args...) method, and return the appropriate values. +// +// For example, to mock a method that saves the name and age of a person and returns +// the year of their birth or an error, you might write this: +// +//     func (o *MyTestObject) SavePersonDetails(firstname, lastname string, age int) (int, error) { +//       args := o.Called(firstname, lastname, age) +//       return args.Int(0), args.Error(1) +//     } +// +// The Int, Error and Bool methods are examples of strongly typed getters that take the argument +// index position. Given this argument list: +// +//     (12, true, "Something") +// +// You could read them out strongly typed like this: +// +//     args.Int(0) +//     args.Bool(1) +//     args.String(2) +// +// For objects of your own type, use the generic Arguments.Get(index) method and make a type assertion: +// +//     return args.Get(0).(*MyObject), args.Get(1).(*AnotherObjectOfMine) +// +// This may cause a panic if the object you are getting is nil (the type assertion will fail), in those +// cases you should check for nil first. +package mock | 
