assertSame([ ['value' => 'sin_cargo', 'label' => 'Sin cargo'], ['value' => 'otro_metodo', 'label' => 'Otro método'], ], EntryReservationPaymentType::options()); } public function test_it_defines_the_requested_fillable_fields(): void { $reservation = new EntryReservation; $this->assertSame([ 'variant_id', 'ticket_id', 'inventory_id', 'batch_id', 'fecha_reserva', 'importe', 'tipo_pago', ], $reservation->getFillable()); } }