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'

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

Please sign in to comment.