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

Commit

Permalink
Merge branch 'hotfix/zendframework/zendframework#6047-enable-zend-tes…
Browse files Browse the repository at this point in the history
…t-controller-tests' into develop

Close zendframework/zendframework#6047
Forward Port zendframework/zendframework#6047
  • Loading branch information
Ocramius committed Apr 2, 2014
3 parents 2725baa + 4d8efbe + 4cfd6ad commit e4e8452
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 e4e8452

Please sign in to comment.