diff --git a/Tests/Controller/AuthControllerTest.php b/Tests/Controller/AuthControllerTest.php new file mode 100644 index 0000000..c7064da --- /dev/null +++ b/Tests/Controller/AuthControllerTest.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Core23\LastFmBundle\Tests\Controller; + +use Core23\LastFmBundle\Controller\AuthController; +use PHPUnit\Framework\TestCase; + +class AuthControllerTest extends TestCase +{ + private $controller; + + protected function setUp() + { + $this->controller = new AuthController(); + } + + public function testItIsInstantiable() + { + $this->assertNotNull($this->controller); + } +}