Files
vuefilemanager/tests/Feature/SetupWizardTest.php
2021-03-05 19:56:00 +01:00

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()
{
}
}