]>
BookStack Code Mirror - bookstack/blob - tests/TestCase.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Namespaced tests to align with new laravel default
[bookstack]
/
tests
/
TestCase.php
1
<?php namespace Tests;
2
3
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
4
5
abstract class TestCase extends BaseTestCase
6
{
7
use CreatesApplication;
8
}