fastadmin/tests/TestCase.php

17 lines
344 B
PHP

<?php
namespace tests;
use PHPUnit\Framework\TestCase as BaseTestCase;
use tests\helpers\ApplicationTrait;
use tests\helpers\AssertionsTrait;
use tests\helpers\CrawlerTrait;
abstract class TestCase extends BaseTestCase
{
use ApplicationTrait;
use AssertionsTrait;
use CrawlerTrait;
protected $baseUrl = 'http://localhost';
}