create([ 'play_count' => 10, ]); $this->postAs('/api/interaction/play', ['song' => $interaction->song->id], $interaction->user) ->assertJsonStructure([ 'type', 'id', 'song_id', 'liked', 'play_count', ]); self::assertSame(11, $interaction->refresh()->play_count); Event::assertDispatched(PlaybackStarted::class); } public function testStoreNewEntry(): void { Event::fake(PlaybackStarted::class); $song = Song::factory()->create(); $user = create_user(); $this->postAs('/api/interaction/play', ['song' => $song->id], $user) ->assertJsonStructure([ 'type', 'id', 'song_id', 'liked', 'play_count', ]); $interaction = Interaction::query() ->where('song_id', $song->id) ->where('user_id', $user->id) ->first(); self::assertSame(1, $interaction->play_count); Event::assertDispatched(PlaybackStarted::class); } }