testing unit tests

pull/2/head
Jean-Marc MEESSEN 4 years ago
parent ee565dd24c
commit 6ff7672658

@ -0,0 +1,30 @@
package cmd
import "testing"
func TestValidateCall(t *testing.T) {
type args struct {
sign string
}
tests := []struct {
name string
args args
//args string
wantCall string
wantErrorMsg string
}{
{"Good call (simple)", args.String("on4kjm"), "ON4KJM", ""},
{"Good call (suffix)", "on4kjm/p", "ON4KJM/P", ""},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotCall, gotErrorMsg := ValidateCall(tt.args.sign)
if gotCall != tt.wantCall {
t.Errorf("ValidateCall() gotCall = %v, want %v", gotCall, tt.wantCall)
}
if gotErrorMsg != tt.wantErrorMsg {
t.Errorf("ValidateCall() gotErrorMsg = %v, want %v", gotErrorMsg, tt.wantErrorMsg)
}
})
}
}
Loading…
Cancel
Save