librenms-librenms/tests/LaravelTestCase.php
Tony Murray eb648a1d6f Revert "Changes to improve testing (#9608)" (#9937)
This reverts commit d1a0ccda46d805dead271c7f9c2c41917f51f40a.
2019-03-12 00:49:14 -05:00

12 lines
203 B
PHP

<?php
namespace LibreNMS\Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class LaravelTestCase extends BaseTestCase
{
use CreatesApplication;
use SnmpsimHelpers;
}