added SetupWizardTest skelet

This commit is contained in:
Peter Papp
2021-03-05 19:56:00 +01:00
parent 4c947a0e4d
commit 485dddec68
7 changed files with 128 additions and 58 deletions

View File

@@ -0,0 +1,66 @@
<?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()
{
}
}