mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 23:44:01 +03:00
FILE / ScuroNeko/mtg
network/init_internal_test.go
Исходный файл и его история в репозитории.
25 lines
573 B
Go
25 lines
573 B
Go
package network
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/9seconds/mtg/v2/essentials"
|
|
"github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
type DialerMock struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (d *DialerMock) Dial(network, address string) (essentials.Conn, error) {
|
|
args := d.Called(network, address)
|
|
|
|
return args.Get(0).(essentials.Conn), args.Error(1) // nolint: wrapcheck
|
|
}
|
|
|
|
func (d *DialerMock) DialContext(ctx context.Context, network, address string) (essentials.Conn, error) {
|
|
args := d.Called(ctx, network, address)
|
|
|
|
return args.Get(0).(essentials.Conn), args.Error(1) // nolint: wrapcheck
|
|
}
|