Skip to content

9.2.0

Compare
Choose a tag to compare
@dmitry-ivanov dmitry-ivanov released this 27 Jul 20:29
· 17 commits to 9.x since this release

9.2.0 (27 Jul 2022)

Removed

The laravel-testing-tools is an old package. Its first release was in 2016 when Laravel was 5.1.

Since then, the framework has evolved drastically, and some assertions became available in Laravel core.

Thus, I'll do several releases to remove such assertions in favor of using the ones provided by Laravel.

In this release were removed:

ArtisanAsserts

willSeeConfirmation() / willNotSeeConfirmation() / willGiveConfirmation() / willNotGiveConfirmation()

Please, use the expectsConfirmation() method.

seeArtisanOutput()

Please, use the expectsOutput() method.

dontSeeArtisanOutput()

Please, use the doesntExpectOutput() method.

seeInArtisanOutput()

Please, use the expectsOutputToContain() method.

dontSeeInArtisanOutput()

Please, use the doesntExpectOutputToContain() method.

seeArtisanTableOutput() / dontSeeArtisanTableOutput() / seeArtisanTableRowsCount() / dontSeeArtisanTableRowsCount()

Please, use the expectsTable() method.

ArtisanHelpers

runArtisan()

Please, use the artisan() method.