Issues (66)

tests/Command/CacheTest.php (3 issues)

1
<?php
2
3
class CacheTest extends \PHPUnit\Framework\TestCase
4
{
5
	public function testRun()
6
	{
7
		$cfgfile = dirname( dirname( __DIR__ ) ) . '/src/aimeos-default.php';
8
		$argv = array( "cache.php", "--config=$cfgfile", "unittest" );
9
10
		ob_start();
11
		$result = \Aimeos\Slim\Command\Cache::run( $argv );
0 ignored issues
show
The assignment to $result is dead and can be removed.
Loading history...
Are you sure the assignment to $result is correct as Aimeos\Slim\Command\Cache::run($argv) targeting Aimeos\Slim\Command\Cache::run() seems to always return null.

This check looks for function or method calls that always return null and whose return value is assigned to a variable.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
$object = $a->getObject();

The method getObject() can return nothing but null, so it makes no sense to assign that value to a variable.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
12
		$output = ob_get_contents();
13
		ob_end_clean();
14
15
		$this->assertEquals( "Clearing the Aimeos cache for site \"unittest\"\n", $output );
16
	}
17
18
19
	public function testRunHelp()
20
	{
21
		$cfgfile = dirname( dirname( __DIR__ ) ) . '/src/aimeos-default.php';
0 ignored issues
show
The assignment to $cfgfile is dead and can be removed.
Loading history...
22
		$argv = array( "cache.php", "--help" );
23
24
		$this->expectException( \Aimeos\Slim\Command\Exception::class );
25
		\Aimeos\Slim\Command\Cache::run( $argv );
26
	}
27
}
28