You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
304 B
PHP

<?php
namespace BSR\Webservice\Formatter;
use PHPUnit\Framework\TestCase;
class FormatterTest extends TestCase
{
public function testFormatterAllwaysReturnsAJsonFormatter()
{
$formatter = Formatter::getFormatter();
$this->assertEquals($formatter instanceof Json, true);
}
}