Completed
Push — master ( c2bc12...ef5bc2 )
by Dmitry
04:55
created

tests/unit/controllers/PayControllerTest.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * Finance module for HiPanel
4
 *
5
 * @link      https://github.com/hiqdev/hipanel-module-finance
6
 * @package   hipanel-module-finance
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hipanel\modules\finance\tests\unit\controllers;
12
13
use hipanel\modules\finance\controllers\PayController;
14
15
/**
16
 * Generated by PHPUnit_SkeletonGenerator on 2016-04-27 at 13:36:04.
17
 */
18
class PayControllerTest extends \PHPUnit\Framework\TestCase
19
{
20
    /**
21
     * @var PayController
22
     */
23
    protected $object;
24
25
    protected function setUp()
26
    {
27
        $this->object = new PayController('test', null);
28
    }
29
30
    protected function tearDown()
31
    {
32
    }
33
34
    public function testActions()
35
    {
36
        $this->assertInternalType('array', $this->object->actions());
0 ignored issues
show
Deprecated Code introduced by
The method PHPUnit\Framework\Assert::assertInternalType() has been deprecated with message: https://github.com/sebastianbergmann/phpunit/issues/3369

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
37
    }
38
}
39