Add tests for all of the account actions

This commit is contained in:
Dane Everitt 2018-07-15 15:58:24 -07:00
parent be2c76c24a
commit d9a09e92bd
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
9 changed files with 243 additions and 24 deletions

View file

@ -0,0 +1,23 @@
<?php
namespace Pterodactyl\Tests\Browser\Processes\Dashboard;
use Pterodactyl\Tests\Browser\BrowserTestCase;
abstract class DashboardTestCase extends BrowserTestCase
{
/**
* @var \Pterodactyl\Models\User
*/
protected $user;
/**
* Setup tests and provide a default user to calling functions.
*/
protected function setUp()
{
parent::setUp();
$this->user = $this->user();
}
}