We don’t sell single courses, but you can purchase Monthly plan and cancel
after one month.
Also, check out avaiable discounts based on your country.
We don’t sell single courses, but you can purchase Monthly plan and cancel
after one month.
Also, check out avaiable discounts based on your country.
This is a follow-up course to the previously released Testing in Laravel For Beginners.
I deliberately separated them because there are two different audiences for testing:
This course is also a new text-based version of the older video course from 2022, updated to the newest Laravel 11, Pest 3 and other syntax.
This advanced testing course will cover the following topics.
actingAs($this->user)
->get('/products')
->assertStatus(200)
->assertSee($product->name);
// Or better `assertSeeText()`?
$this->artisan('page:publish', ['id' => 1])
->assertFailed()
->expectsOutputToContain('Not found');
$this->mock(YouTubeService::class)
->shouldReceive('getThumbnailByID')
->with('5XywKLjCD3g')
->once()
->andReturn(...);
php artisan test --stop-on-failure
So, are you intrigued? Let's start with the FREE first lesson about GitHub actions.