Files
ipe/mocks/socket.go
T
2018-11-25 17:40:43 +01:00

10 lines
183 B
Go

package mocks
// MockSocket is a mock implementation of Socket
// used in the test suite
type MockSocket struct{}
func (s MockSocket) WriteJSON(i interface{}) error {
return nil
}