Update of /cvsroot/jsoncpp/jsoncpp/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9236/test
Added Files:
test_preserve_comment_01.expected
test_preserve_comment_01.json
Log Message:
* test to check comment rewrite of style writer.
--- NEW FILE: test_preserve_comment_01.expected ---
.={}
.first=1
.second=2
--- NEW FILE: test_preserve_comment_01.json ---
/* A comment
at the beginning of the file.
*/
{
"first" : 1, // comment after 'first' on the same line
/* Comment before 'second'
*/
"second" : 2
}
/* A comment at
the end of the file.
*/
|