| 1 | <?php |
||
| 17 | */ |
||
| 18 | class AbstractReceiverTest extends \PHPUnit_Framework_TestCase |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var AbstractReceiver |
||
| 22 | */ |
||
| 23 | protected $receiver; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function setUp() |
||
| 29 | { |
||
| 30 | $this->receiver = $this->getMockForAbstractClass( |
||
| 31 | AbstractReceiver::class, |
||
| 32 | ['9a4ecb987ef59c88b12035278b86f26d44883593'] |
||
| 33 | ); |
||
| 34 | } |
||
| 41 |