| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class SymfonyTest extends \PHPUnit\Framework\TestCase |
||
| 13 | { |
||
| 14 | private $mock; |
||
| 15 | |||
| 16 | |||
| 17 | protected function setUp() : void |
||
| 18 | { |
||
| 19 | if( !interface_exists( 'Symfony\Component\Mailer\MailerInterface' ) ) { |
||
| 20 | $this->markTestSkipped( 'Class Symfony\Component\Mailer\MailerInterface not found' ); |
||
| 21 | } |
||
| 22 | |||
| 23 | $this->mock = $this->getMockBuilder( 'Symfony\Component\Mailer\MailerInterface' ) |
||
| 24 | ->disableOriginalConstructor() |
||
| 25 | ->getMock(); |
||
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | public function testGet() |
||
| 33 | } |
||
| 34 | } |
||
| 35 |