Skip to content

Commit

Permalink
Try making tests a bit less transient
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Dec 15, 2021
1 parent cb18660 commit 621379b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Tests/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -894,6 +894,9 @@ public function testRenderExceptionLineBreaks()
$this->assertStringMatchesFormatFile(self::$fixturesPath.'/application_renderexception_linebreaks.txt', $tester->getDisplay(true), '->renderException() keep multiple line breaks');
}

/**
* @group transient-on-windows
*/
public function testRenderAnonymousException()
{
$application = new Application();
Expand All @@ -917,6 +920,9 @@ public function testRenderAnonymousException()
$this->assertStringContainsString('Dummy type "class@anonymous" is invalid.', $tester->getDisplay(true));
}

/**
* @group transient-on-windows
*/
public function testRenderExceptionStackTraceContainsRootException()
{
$application = new Application();
Expand Down

0 comments on commit 621379b

Please sign in to comment.