Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering if anybody knows of some standard JSON unit tests that are used out there.

I have a library that does some JSON serialization and deserialization to a specific data object, which I would like to verify is correct. I have homespun several tests which all pass, but I am suspicious there are many corner cases I missed.

I assume that some library out there must have fairly thorough unit tests which I could modify. Does anybody know of any such tests?

share|improve this question

1 Answer

up vote 1 down vote accepted

Download python, so that you have the standard library source code. Their test code is in: Lib/json/tests

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.