我有一个键值对格式的 JSONString,并且在我的测试中,我尝试使用以下方法验证字符串中特定键的值:
JSONString['key'] should eq 'value'
我的值是一个类似于人名的字符串,比如John
or Jenny
。
执行后,我收到此错误:
Can't convert String into Integer for the mentioned code.
我错过了什么吗?
我有一个键值对格式的 JSONString,并且在我的测试中,我尝试使用以下方法验证字符串中特定键的值:
JSONString['key'] should eq 'value'
我的值是一个类似于人名的字符串,比如John
or Jenny
。
执行后,我收到此错误:
Can't convert String into Integer for the mentioned code.
我错过了什么吗?