Skip to content

Commit

Permalink
v3.2.3
Browse files Browse the repository at this point in the history
* Add new `Orchestra\Testbench\TestCase::setUpTraits()` method.
* Add support to `Illuminate\Foundation\Testing\Concerns\InteractsWithAuthentication` by default.
* Update named route look-up table when `$app` is bootstrapped.

Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Mar 4, 2016
1 parent 8852752 commit 86e105a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/changes.md
Expand Up @@ -5,6 +5,10 @@ title: Testbench Change Log

## Version 3.2 {#v3-2}

* Add new `Orchestra\Testbench\TestCase::setUpTraits()` method.
* Add support to `Illuminate\Foundation\Testing\Concerns\InteractsWithAuthentication` by default.
* Update named route look-up table when `$app` is bootstrapped.

### v3.2.2 {#v3-2-2}

* Fixes `Orchestra\Testbench\ApplicationTestCase` filename typo. ([@rydurham](https://github.com/rydurham))
Expand Down
4 changes: 2 additions & 2 deletions src/TestCase.php
Expand Up @@ -70,7 +70,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase implements TestCaseC
*
* @return void
*/
protected function setUp()
public function setUp()
{
if (! $this->app) {
$this->refreshApplication();
Expand Down Expand Up @@ -128,7 +128,7 @@ protected function setUpTraits()
*
* @return void
*/
protected function tearDown()
public function tearDown()
{
if (class_exists('Mockery')) {
Mockery::close();
Expand Down

0 comments on commit 86e105a

Please sign in to comment.