X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/61c272e101b6f0444c7b2a666b0b5e828ba6db03..6d81feb101da689092d3370c1dc55be89e11fd35:/hotline/client_conn_test.go diff --git a/hotline/client_conn_test.go b/hotline/client_conn_test.go index 2176185..9f04d66 100644 --- a/hotline/client_conn_test.go +++ b/hotline/client_conn_test.go @@ -1,52 +1,2 @@ package hotline -import ( - "net" - "testing" -) - -func TestClientConn_handleTransaction(t *testing.T) { - type fields struct { - Connection net.Conn - ID *[]byte - Icon *[]byte - Flags *[]byte - UserName []byte - Account *Account - IdleTime int - Server *Server - Version *[]byte - Idle bool - AutoReply *[]byte - } - type args struct { - transaction *Transaction - } - tests := []struct { - name string - fields fields - args args - wantErr bool - }{ - // TODO: Add test cases. - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - cc := &ClientConn{ - Connection: tt.fields.Connection, - ID: tt.fields.ID, - Icon: tt.fields.Icon, - Flags: tt.fields.Flags, - UserName: tt.fields.UserName, - Account: tt.fields.Account, - Server: tt.fields.Server, - Version: tt.fields.Version, - Idle: tt.fields.Idle, - AutoReply: tt.fields.AutoReply, - } - if err := cc.handleTransaction(tt.args.transaction); (err != nil) != tt.wantErr { - t.Errorf("handleTransaction() error = %v, wantErr %v", err, tt.wantErr) - } - }) - } -}