28 lines
361 B
PHP
28 lines
361 B
PHP
<?php
|
|
|
|
use Sleepy\Core\Input;
|
|
use Sleepy\Core\Config;
|
|
use Sleepy\Core\Output;
|
|
|
|
class OutputTest extends Sleepy_Testcase {
|
|
|
|
protected $output;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$c = new Config();
|
|
$i = new Input();
|
|
|
|
$this->output = new Output($c, $i);
|
|
}
|
|
|
|
public function testGetAcceptedType()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
// End of OutputTest.php
|