1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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);
- }
- }
|