mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 11:16:38 +08:00
43 lines
951 B
PHP
43 lines
951 B
PHP
<?php
|
|
|
|
namespace Test\Dallgoot\Yaml\Nodes;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use Dallgoot\Yaml\Nodes\JSON;
|
|
|
|
/**
|
|
* Class JSONTest.
|
|
*
|
|
* @author Stephane Rebai <stephane.rebai@gmail.com>.
|
|
* @license https://opensource.org/licenses/MIT The MIT license.
|
|
* @link https://github.com/dallgoot/yaml
|
|
* @since File available since Release 1.0.0
|
|
*
|
|
* @covers \Dallgoot\Yaml\Nodes\JSON
|
|
*/
|
|
class JSONTest extends TestCase
|
|
{
|
|
/**
|
|
* @var JSON $nodeJSON An instance of "Nodes\JSON" to test.
|
|
*/
|
|
private $nodeJSON;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
/** @todo Maybe add some arguments to this constructor */
|
|
$this->nodeJSON = new JSON(' [1,2,3]',1);
|
|
}
|
|
|
|
/**
|
|
* @covers \Dallgoot\Yaml\Nodes\JSON::build
|
|
*/
|
|
public function testBuild(): void
|
|
{
|
|
$this->assertEquals([1,2,3], $this->nodeJSON->build());
|
|
}
|
|
}
|