File manager - Edit - /home/infoilmg/public_html/wp-content/plugins/fs-poster/vendor/abraham/twitteroauth/tests/Util/JsonDecoderTest.php
Back
<?php namespace Abraham\TwitterOAuth\Tests; use Abraham\TwitterOAuth\Util\JsonDecoder; class JsonDecoderTest extends \PHPUnit_Framework_TestCase { /** * @dataProvider jsonProvider */ public function testDecode($input, $asArray, $expected) { $this->assertEquals($expected, JsonDecoder::decode($input, $asArray)); } public function jsonProvider() { return [ ['[]', true, []], ['[1,2,3]', true, [1, 2, 3]], ['[{"id": 556179961825226750}]', true, [['id' => 556179961825226750]]], ['[]', false, []], ['[1,2,3]', false, [1, 2, 3]], [ '[{"id": 556179961825226750}]', false, [ $this->getClass(function ($object) { $object->id = 556179961825226750; return $object; }) ] ], ]; } /** * @param callable $callable * * @return stdClass */ private function getClass(\Closure $callable) { $object = new \stdClass(); return $callable($object); } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings