testing: remove mocks for now

This commit is contained in:
Derrick Hammer 2024-01-29 00:23:42 -05:00
parent 4b718e1dd3
commit 238f78b556
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
6 changed files with 0 additions and 9 deletions

View File

@ -1 +0,0 @@
package base

View File

@ -1 +0,0 @@
package interfaces

View File

@ -1 +0,0 @@
package net

View File

@ -6,8 +6,6 @@ import (
"net/url"
)
//go:generate mockgen -source=peer.go -destination=../mocks/net/peer.go -package=net
var (
_ Peer = (*BasePeer)(nil)
)

View File

@ -8,8 +8,6 @@ import (
"io"
)
//go:generate mockgen -source=base.go -destination=../mocks/base/base.go -package=base
var (
_ msgpack.CustomDecoder = (*IncomingMessageReader)(nil)
)

View File

@ -2,8 +2,6 @@ package base
import "github.com/vmihailenco/msgpack/v5"
//go:generate mockgen -source=encodeable_message.go -destination=../mocks/base/encodeable_message.go -package=base
type EncodeableMessage interface {
msgpack.CustomEncoder
}