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); } public function testStoreNewEntry(): void { /** @var Song $song */ $song = Song::factory()->create(); /** @var User $user */ $user = User::factory()->create(); $this->postAs('/api/interaction/play', ['song' => $song->id], $user) ->assertJsonStructure([ 'type', 'id', 'song_id', 'liked', 'play_count', ]); /** @var Interaction $interaction */ $interaction = Interaction::query() ->where('song_id', $song->id) ->where('user_id', $user->id) ->first(); self::assertSame(1, $interaction->play_count); } }