mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
67 lines
810 B
PHP
67 lines
810 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Tests\TestCase;
|
|
|
|
class SetupWizardTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_verify_purchase_code()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_setup_database()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_store_stripe_credentials()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_store_stripe_billings()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_store_stripe_plans()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_store_app_settings()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_create_admin_account()
|
|
{
|
|
|
|
}
|
|
}
|