1
0
mirror of https://github.com/json-iterator/go.git synced 2025-06-24 23:16:47 +02:00

increase coverage

This commit is contained in:
Xargin
2017-07-05 13:55:10 +08:00
parent 550531a046
commit 1de44419ea
7 changed files with 154 additions and 45 deletions

View File

@ -2,9 +2,9 @@ package jsoniter
import (
"encoding/json"
"fmt"
"github.com/json-iterator/go/require"
"testing"
"github.com/json-iterator/go/require"
)
func Test_bind_api_demo(t *testing.T) {
@ -21,7 +21,7 @@ func Test_iterator_api_demo(t *testing.T) {
for iter.ReadArray() {
total += iter.ReadInt()
}
fmt.Println(total)
//fmt.Println(total)
}
type People struct {