mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-30 16:06:07 +00:00
13 lines
261 B
PHP
13 lines
261 B
PHP
<?php
|
|
class CoverageMethodParenthesesWhitespaceTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @covers CoveredClass::publicMethod ( )
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
$o = new CoveredClass;
|
|
$o->publicMethod();
|
|
}
|
|
}
|