1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
package gojsonq
import (
"testing"
)
func TestWithDecoder(t *testing.T) {
jq := New(WithDecoder(&cDecoder{}))
if jq.option.decoder == nil {
t.Error("failed to set decoder as option")
}
}
func TestWithDecoder_with_nil_expecting_an_error(t *testing.T) {
jq := New(WithDecoder(nil))
if jq.Error() == nil {
t.Error("failed to catch nil in WithDecoder")
}
}
func TestWithSeparator(t *testing.T) {
jq := New(WithSeparator("->"))
if jq.option.separator != "->" {
t.Error("failed to set separator as option")
}
}
func TestWithSeparator_with_nil_expecting_an_error(t *testing.T) {
jq := New(WithSeparator(""))
if jq.Error() == nil {
t.Error("failed to catch nil in WithSeparator")
}
}
// to increase the code coverage; will remove in major release
func TestSetDecoder(t *testing.T) {
jq := New(SetDecoder(&cDecoder{}))
if jq.option.decoder == nil {
t.Error("failed to set decoder as option")
}
}
func TestSetDecoder_with_nil_expecting_an_error(t *testing.T) {
jq := New(SetDecoder(nil))
if jq.Error() == nil {
t.Error("failed to catch nil in SetDecoder")
}
}
func TestSetSeparator(t *testing.T) {
jq := New(SetSeparator("->"))
if jq.option.separator != "->" {
t.Error("failed to set separator as option")
}
}
func TestSetSeparator_with_nil_expecting_an_error(t *testing.T) {
jq := New(SetSeparator(""))
if jq.Error() == nil {
t.Error("failed to catch nil in SetSeparator")
}
}
|