Nwidart\Modules\tests\Commands\ControllerCommandTest::it_appends_controller_to_class_name_if_not_present PHP Method

it_appends_controller_to_class_name_if_not_present() public method

    public function it_appends_controller_to_class_name_if_not_present()
    {
        $this->artisan('module:make-controller', ['controller' => 'My', 'module' => 'Blog']);
        $file = $this->finder->get($this->modulePath . '/Http/Controllers/MyController.php');
        $this->assertEquals($this->expectedContent(), $file);
    }