Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/#6047-enable-zend-test-controller-tests' into de…
Browse files Browse the repository at this point in the history
…velop

Close #6047
Forward Port #6047
  • Loading branch information
Ocramius committed Apr 2, 2014
2 parents fafa338 + 178da75 commit bea663f
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -627,11 +627,14 @@ public function testAssertExceptionInAction()
{
$this->dispatch('/exception');
$this->assertResponseStatusCode(500);
$this->assertApplicationException('RuntimeException', 'Foo error');
$this->assertApplicationException('RuntimeException');
}

public function testAssertExceptionAndMessageInAction()
{
$this->dispatch('/exception');
$this->assertResponseStatusCode(500);
$this->assertApplicationException('RuntimeException');
$this->assertApplicationException('RuntimeException', 'Foo error');
}

/**
Expand Down

0 comments on commit bea663f

Please sign in to comment.