Releases: dmitry-ivanov/laravel-testing-tools
10.0.0
9.6.0
9.6.0 (21 Aug 2022)
Removed
We continue to remove outdated helpers and assertions.
In this release were removed:
- ServiceProviderAsserts
- seeRegisteredAlias()
- dontSeeRegisteredAlias()
- seeRegisteredCommand()
- dontSeeRegisteredCommand()
9.5.0
9.5.0 (21 Aug 2022)
Removed
We continue to remove outdated helpers and assertions.
In this release were removed:
- ReflectionAsserts
- assertSubclassOf()
- assertNotSubclassOf()
- assertTraitUsed()
- assertTraitNotUsed()
- assertMethodExists()
- assertMethodNotExists()
9.4.0
9.4.0 (21 Aug 2022)
Removed
We continue to remove outdated assertions.
In this release were removed:
- ExceptionAsserts
- willSeeException()
Please, use the Laravel's expectException()
, expectExceptionCode()
and expectExceptionMessage()
asserts.
9.3.0
9.3.0 (21 Aug 2022)
Removed
We continue to remove outdated helpers and assertions.
In this release were removed:
- ApplicationHelpers
- isTravis()
- EloquentAsserts
- assertEloquentTableEquals()
- assertEloquentTableNotEquals()
- assertEloquentIsIncrementing()
- assertEloquentIsNotIncrementing()
- assertEloquentFillableEquals()
- assertEloquentFillableNotEquals()
- assertEloquentDatesEquals()
- assertEloquentDatesNotEquals()
- assertEloquentTouchesEquals()
- assertEloquentTouchesNotEquals()
- assertEloquentHasMany()
- assertEloquentHasCreateFor()
- assertEloquentHasCreateManyFor()
- assertEloquentBelongsTo()
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.