Nwidart\Modules\tests\Commands\GenerateListenerCommandTest::it_generated_correct_file_with_content PHP Method

it_generated_correct_file_with_content() public method

    public function it_generated_correct_file_with_content()
    {
        $this->artisan('module:make-listener', ['name' => 'NotifyUsersOfANewPost', 'module' => 'Blog', '--event' => 'UserWasCreated']);
        $file = $this->finder->get($this->modulePath . '/Events/Handlers/NotifyUsersOfANewPost.php');
        $this->assertEquals($this->expectedContent(), $file);
    }