Skip to content

Commit 0052ec5

Browse files
keradussebastianbergmann
authored andcommitted
partial message exception are no longer working, drop tests
1 parent fcbc64b commit 0052ec5

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

tests/unit/Framework/Constraint/ExceptionMessageTest.php

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,4 @@ public function testLiteralMessage()
2222
{
2323
throw new \Exception('A literal exception message');
2424
}
25-
26-
/**
27-
* @expectedException \Exception
28-
* @expectedExceptionMessage A partial
29-
*/
30-
public function testPartialMessageBegin()
31-
{
32-
throw new \Exception('A partial exception message');
33-
}
34-
35-
/**
36-
* @expectedException \Exception
37-
* @expectedExceptionMessage partial exception
38-
*/
39-
public function testPartialMessageMiddle()
40-
{
41-
throw new \Exception('A partial exception message');
42-
}
43-
44-
/**
45-
* @expectedException \Exception
46-
* @expectedExceptionMessage exception message
47-
*/
48-
public function testPartialMessageEnd()
49-
{
50-
throw new \Exception('A partial exception message');
51-
}
5225
}

0 commit comments

Comments
 (0)