9.2.0
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.