luyatests\core\console\controllers\ImportControllerTest::testCustomCommandSuccess PHP Method

testCustomCommandSuccess() public method

$this->assertEquals(1, Yii::$app->run()); }
    public function testCustomCommandSuccess()
    {
        Yii::$app->request->setParams(['import/index']);
        $resp = Yii::$app->run();
        $this->assertEquals(0, $resp);
    }
ImportControllerTest