20 lines
275 B
PHP
20 lines
275 B
PHP
<?php
|
|
|
|
require_once 'PHPUnit/Framework/TestCase.php';
|
|
|
|
class SideplaylistControllerTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
/* Setup Routine */
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
/* Tear Down Routine */
|
|
}
|
|
|
|
|
|
}
|
|
|