Skip to content

Commit

Permalink
extend Symfony_whitespaces itest
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Nov 3, 2016
1 parent 1fa3c7b commit a3a4ae3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tests/Fixtures/Integration/set/@Symfony_whitespaces.test-in.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,26 @@ private function printText($text)
echo $text;
}
}

interface Test1Interface
{

}

interface Test2Interface
{
}

class FooBarTest extends
\PHPUnit_Framework_TestCase
implements
Test1Interface,
Test2Interface
{
/**
* @expectedException Exception
*/
public function testFooBar()
{
}
}
18 changes: 18 additions & 0 deletions tests/Fixtures/Integration/set/@Symfony_whitespaces.test-out.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,21 @@ private function printText($text)
echo $text;
}
}

interface Test1Interface
{
}

interface Test2Interface
{
}

class FooBarTest extends \PHPUnit_Framework_TestCase implements Test1Interface, Test2Interface
{
/**
* @expectedException \Exception
*/
public function testFooBar()
{
}
}

0 comments on commit a3a4ae3

Please sign in to comment.