mirror of
https://github.com/PeernetOfficial/core.git
synced 2026-07-17 02:47:51 +01:00
12 lines
156 B
Go
12 lines
156 B
Go
package packet
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestKeepAlivePacket(t *testing.T) {
|
|
pkt1 := &KeepAlivePacket{}
|
|
pkt1.SetHeader(59, 100)
|
|
testPacket(pkt1, t)
|
|
}
|