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