123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Symfony\Component\Yaml\Tests;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Yaml\Yaml;
- class YamlTest extends TestCase
- {
- public function testParseAndDump()
- {
- $data = ['lorem' => 'ipsum', 'dolor' => 'sit'];
- $yml = Yaml::dump($data);
- $parsed = Yaml::parse($yml);
- $this->assertEquals($data, $parsed);
- }
-
- public function testZeroIndentationThrowsException()
- {
- Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, 0);
- }
-
- public function testNegativeIndentationThrowsException()
- {
- Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, -4);
- }
- }
|