是否有使用我的模板(PhpStorm)从源PHP类生成测试方法的选项

时间:2017-09-08 09:02:30

标签: php testing phpstorm

首先,我想问你是否可以在PhpStorm的选定源类中自动生成测试类中的测试模板方法?

例如:

我想为该课程生成测试:

D3D11_RASTERIZER_DESC

这应该是这样的:

class ReportMyOrdersController extends InitializationController
{
    public function init()
    {
        $this->doSomethingImportant();
    }

    public function index()
    {
        $options = [
            'option1' => 'surrender',
            'option2' => 'fight'
        ];

        return placeOrder('option' . rand(1, 2));
    }

    public function search()
    {
        return searchEverywereRightNow('answer');
    }

    public function doSomethingImportant()
    {
        return 'somethingImportant';
    }

}

有可能吗?我正在使用测试驱动开发方法进行编程,这将使我的测试变得更容易。

1 个答案:

答案 0 :(得分:1)