assertIsString($actual); $this->assertStringStartsWith('var Messages = {', $actual); $this->assertStringEndsWith('};', $actual); $json = substr($actual, strlen('var Messages = '), -1); $array = json_decode($json, true); $this->assertIsArray($array); $this->assertArrayHasKey('strDoYouReally', $array); $this->assertEquals('Do you really want to execute "%s"?', $array['strDoYouReally']); } }