mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-20 23:03:14 +03:00
13 lines
241 B
PHP
13 lines
241 B
PHP
|
<?php
|
||
|
class CoverageNotProtectedTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers CoveredClass::<!protected>
|
||
|
*/
|
||
|
public function testSomething()
|
||
|
{
|
||
|
$o = new CoveredClass;
|
||
|
$o->publicMethod();
|
||
|
}
|
||
|
}
|