mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-16 04:53:14 +03:00
12 lines
207 B
PHP
12 lines
207 B
PHP
<?php
|
|
class CoverageFunctionParenthesesTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @covers ::globalFunction()
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
globalFunction();
|
|
}
|
|
}
|