Files
cachet-docker/tests/Bus/Commands/Subscriber/UnsubscribeSubscriptionCommandTest.php
2016-01-29 15:02:28 +00:00

42 lines
1.1 KiB
PHP

<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CachetHQ\Tests\Cachet\Bus\Commands\Subscriber;
use AltThree\TestBench\CommandTrait;
use CachetHQ\Cachet\Bus\Commands\Subscriber\UnsubscribeSubscriptionCommand;
use CachetHQ\Cachet\Bus\Handlers\Commands\Subscriber\UnsubscribeSubscriptionCommandHandler;
use CachetHQ\Cachet\Models\Subscription;
use CachetHQ\Tests\Cachet\AbstractTestCase;
/**
* This is the unsubscribe subscriber command test class.
*
* @author Joseph Cohen <joe@alt-three.com>
*/
class UnsubscribeSubscriptionCommandTest extends AbstractTestCase
{
use CommandTrait;
protected function getObjectAndParams()
{
$params = ['subscription' => new Subscription()];
$object = new UnsubscribeSubscriptionCommand($params['subscription']);
return compact('params', 'object');
}
protected function getHandlerClass()
{
return UnsubscribeSubscriptionCommandHandler::class;
}
}