github.com/jtzjtz/kit@v1.0.2/convert/json_test.go (about)

     1  package convert
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestJsonDecode(t *testing.T) {
     9  	a := make(map[string]string)
    10  	er := JsonDecode("{\"aa\":2,\"bb\":3}", a)
    11  
    12  	if er != nil {
    13  		t.Error(er)
    14  	}
    15  	fmt.Println(a)
    16  }