Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Added simple tests for controller
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Mar 5, 2017
1 parent 5767fe0 commit cf313a7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Tests/Controller/BackendControllerTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

/*
* (c) Christian Gripp <mail@core23.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Core23\ShariffBundle\Tests\Controller;

use Core23\ShariffBundle\Controller\BackendController;
use PHPUnit\Framework\TestCase;

class BackendControllerTest extends TestCase
{
private $controller;

protected function setUp()
{
$this->controller = new BackendController();
}

public function testItIsInstantiable()
{
$this->assertNotNull($this->controller);
}
}

0 comments on commit cf313a7

Please sign in to comment.