mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-12-19 01:20:58 +03:00
12ddee4054
There is a lot of redundancy. Let’s not repeat ourselves. Unfortunately, since we do not install PHPUnit as a project dependency on CI, it does not use the composer’s PSR-4 autoloader and the tests are unable to find the `BaseFormatTest` class. Until we resolve that, let’s load the class explicitly.
27 lines
706 B
PHP
27 lines
706 B
PHP
<?php
|
|
/**
|
|
* AtomFormat - RFC 4287: The Atom Syndication Format
|
|
* https://tools.ietf.org/html/rfc4287
|
|
*/
|
|
|
|
namespace RssBridge\Tests\Formats;
|
|
|
|
require_once __DIR__ . '/BaseFormatTest.php';
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class AtomFormatTest extends BaseFormatTest {
|
|
private const PATH_EXPECTED = self::PATH_SAMPLES . 'expectedAtomFormat/';
|
|
|
|
/**
|
|
* @dataProvider sampleProvider
|
|
* @runInSeparateProcess
|
|
*/
|
|
public function testOutput(string $name, string $path) {
|
|
$data = $this->formatData('Atom', $this->loadSample($path));
|
|
$this->assertNotFalse(simplexml_load_string($data));
|
|
|
|
$expected = self::PATH_EXPECTED . $name . '.xml';
|
|
$this->assertXmlStringEqualsXmlFile($expected, $data);
|
|
}
|
|
}
|