INNER CODE UNIT · Go
Test_max
mb-14/gomarkov · helpers_test.go:47
func Test_max(t *testing.T) {
type args struct {
a int
b int
}
tests := []struct {
name string
args args
want int
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := max(tt.args.a, tt.args.b); got != tt.want {
t.Errorf("max() = %v, want %v", got, tt.want)
}
})