...

Source file src/github.com/json-iterator/go/skip_tests/string_test.go

Documentation: github.com/json-iterator/go/skip_tests

     1  package skip_tests
     2  
     3  func init() {
     4  	testCases = append(testCases, testCase{
     5  		ptr: (*string)(nil),
     6  		inputs: []string{
     7  			`""`,       // valid
     8  			`"hello"`,  // valid
     9  			`"`,        // invalid
    10  			`"\"`,      // invalid
    11  			`"\x00"`,   // invalid
    12  			"\"\x00\"", // invalid
    13  			"\"\t\"",   // invalid
    14  			`"\t"`,     // valid
    15  		},
    16  	})
    17  }
    18  

View as plain text