Skip to content

Commit

Permalink
Add more tests
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Apr 19, 2017
1 parent a2346e6 commit d62fff8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/Unit/AppInfo/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
use OCA\Notifications\AppInfo\Application;
use OCA\Notifications\Capabilities;
use OCA\Notifications\Controller\EndpointController;
use OCA\Notifications\Controller\PushController;
use OCA\Notifications\Handler;
use OCA\Notifications\Push;
use OCA\Notifications\Tests\Unit\TestCase;
use OCP\AppFramework\IAppContainer;
use OCP\AppFramework\OCSController;
Expand Down Expand Up @@ -63,12 +65,13 @@ public function dataContainerQuery() {
array(App::class, IApp::class),
array(Capabilities::class),
array(Handler::class),
array(Push::class),

// Controller/
array('EndpointController', EndpointController::class),
array('EndpointController', OCSController::class),
array(EndpointController::class),
array(EndpointController::class, OCSController::class),
array(PushController::class),
array(PushController::class, OCSController::class),
);
}

Expand Down

0 comments on commit d62fff8

Please sign in to comment.