Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
Andrea Spacca ec086b4eb3 Bump google.golang.org/api vor 5 Jahren
..
concurrent Bump google.golang.org/api vor 5 Jahren
imp1 Bump google.golang.org/api vor 5 Jahren
imp2 Bump google.golang.org/api vor 5 Jahren
imp3 Bump google.golang.org/api vor 5 Jahren
imp4 Bump google.golang.org/api vor 5 Jahren
mock_user Bump google.golang.org/api vor 5 Jahren
README.md Bump google.golang.org/api vor 5 Jahren
user.go Bump google.golang.org/api vor 5 Jahren
user_test.go Bump google.golang.org/api vor 5 Jahren

README.md

This directory contains an example of a package containing a non-trivial interface that can be mocked with GoMock. The interesting files are:

  • user.go: Source code for the sample package, containing interfaces to be mocked. This file depends on the packages named imp[1-4] for various things.

  • user_test.go: A test for the sample package, in which mocks of the interfaces from user.go are used. This demonstrates how to create mock objects, set up expectations, and so on.

  • mock_user/mock_user.go: The generated mock code. See ../gomock/matchers.go for the go:generate command used to generate it.

To run the test,

go test github.com/golang/mock/sample