diff --git a/protocol/packets_test.go b/protocol/packets_test.go index 0dc127c..44767c2 100644 --- a/protocol/packets_test.go +++ b/protocol/packets_test.go @@ -229,64 +229,3 @@ func TestBuildPackets(t *testing.T) { }) } } - -func TestBuildKeepAlivePacket(t *testing.T) { - type args struct { - seq uint32 - } - tests := []struct { - name string - args args - want []byte - }{ - // TODO: Add test cases. - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - if got := BuildKeepAlivePacket(tt.args.seq); !reflect.DeepEqual(got, tt.want) { - t.Errorf("BuildKeepAlivePacket() = %v, want %v", got, tt.want) - } - }) - } -} - -func TestBuildCmdPacket(t *testing.T) { - type args struct { - cmd []byte - seq uint32 - } - tests := []struct { - name string - args args - want []byte - }{ - // TODO: Add test cases. - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - if got := BuildCmdPacket(tt.args.cmd, tt.args.seq); !reflect.DeepEqual(got, tt.want) { - t.Errorf("BuildCmdPacket() = %v, want %v", got, tt.want) - } - }) - } -} - -func TestBuildLoginPacket(t *testing.T) { - type args struct { - pw string - } - tests := []struct { - name string - args args - want []byte - }{ - // TODO: Add test cases. - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - if got := BuildLoginPacket(tt.args.pw); !reflect.DeepEqual(got, tt.want) { - t.Errorf("BuildLoginPacket() = %v, want %v", got, tt.want) - } - }) - } -}