mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Remove unused utils * Remove unneeded randomness from tests * Remove more unused functions * Remove unused protobuf structures * Fix small errors
27 lines
668 B
Go
27 lines
668 B
Go
// Copyright (c) 2013-2016 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package appmessage
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// TestPongLatest tests the MsgPong API against the latest protocol version.
|
|
func TestPongLatest(t *testing.T) {
|
|
nonce := uint64(0x1a05b581a5182c)
|
|
msg := NewMsgPong(nonce)
|
|
if msg.Nonce != nonce {
|
|
t.Errorf("NewMsgPong: wrong nonce - got %v, want %v",
|
|
msg.Nonce, nonce)
|
|
}
|
|
|
|
// Ensure the command is expected value.
|
|
wantCmd := MessageCommand(8)
|
|
if cmd := msg.Command(); cmd != wantCmd {
|
|
t.Errorf("NewMsgPong: wrong command - got %v want %v",
|
|
cmd, wantCmd)
|
|
}
|
|
}
|