Skip to content

Commit

Permalink
partial message exception are no longer working, drop tests
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus authored and sebastianbergmann committed Oct 9, 2018
1 parent fcbc64b commit 0052ec5
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions tests/unit/Framework/Constraint/ExceptionMessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,4 @@ public function testLiteralMessage()
{
throw new \Exception('A literal exception message');
}

/**
* @expectedException \Exception
* @expectedExceptionMessage A partial
*/
public function testPartialMessageBegin()
{
throw new \Exception('A partial exception message');
}

/**
* @expectedException \Exception
* @expectedExceptionMessage partial exception
*/
public function testPartialMessageMiddle()
{
throw new \Exception('A partial exception message');
}

/**
* @expectedException \Exception
* @expectedExceptionMessage exception message
*/
public function testPartialMessageEnd()
{
throw new \Exception('A partial exception message');
}
}

0 comments on commit 0052ec5

Please sign in to comment.