Adding some failing tests
parent
0aec42aceb
commit
230d8b2160
@ -0,0 +1,15 @@
|
||||
package obp
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Test_BasicValidation(t *testing.T) {
|
||||
t.Run("KeyMissing", func(t *testing.T) {
|
||||
t.Fail()
|
||||
})
|
||||
|
||||
t.Run("KeyTypeMismatch", func(t *testing.T) {
|
||||
t.Fail()
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue