# Testing

# Factories

While developing your application, you will likely want to "stub" a subscription record in your application's database so that calls to the $billable->subscribed() method return true.

To accomplish this, you may add a "state" method to your billable model's factory class (opens new window). Typically, this will be your application's UserFactory class. Below you will find an example state method implementation; however, you are free to adjust this to your application's own needs:

use App\Models\User;

/**
 * Indicate that the user should have a subscription plan.
 *
 * @return $this
 */
public function withSubscription(string|int $planId = null): static
{
    return $this->afterCreating(function (User $user) use ($planId) {
        optional($user->customer)->update(['trial_ends_at' => null]);

        $user->subscriptions()->create([
            'name' => 'default',
            'paddle_id' => random_int(1, 1000),
            'paddle_status' => 'active',
            'paddle_plan' => $planId,
            'quantity' => 1,
            'trial_ends_at' => null,
            'paused_from' => null,
            'ends_at' => null,
        ]);
    });
}

Once you have defined the state method, you may use it when creating models via your factory:

$user = User::factory()->withSubscription($planId = 1000)->create();

$user->subscribed(); // true