Skip to content

Commit 8339c66

Browse files
committed
test: parse()
1 parent 229ca53 commit 8339c66

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/CommentTest.php

+14
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,20 @@ public function testDecodeThrows()
3636
(new Comment)->decode('{"a":1, /* comment */, "b":}', true);
3737
}
3838

39+
public function testParse()
40+
{
41+
$parsed = Comment::parse('{
42+
// comment
43+
"a//b":"/*value*/"
44+
/* also comment */
45+
}', true);
46+
47+
$this->assertNotEmpty($parsed);
48+
$this->assertInternalType('array', $parsed);
49+
$this->assertArrayHasKey('a//b', $parsed);
50+
$this->assertSame('/*value*/', $parsed['a//b']);
51+
}
52+
3953
public function theTests()
4054
{
4155
return [

0 commit comments

Comments
 (0)