mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-30 07:56:05 +00:00
12 lines
207 B
PHP
12 lines
207 B
PHP
<?php
|
|
class CoverageFunctionParenthesesTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @covers ::globalFunction()
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
globalFunction();
|
|
}
|
|
}
|