I'm trying to mock but does not work
$this->mock(PostList::class, function ($mock) {
$mock->shouldReceive('render')->once();
});
$response = $this->get('/posts');
// ...
This is the error:
Mockery\Exception\InvalidCountException: Method render(<Any Arguments>) from Mockery_0_App_View_Components_PostsList should be called
at least 1 times but called 0 times.
What am I missing?