public function hasArgumentsReturnsFalseIfCommandExpectsNoArguments() { $this->methodReflection->expects($this->atLeastOnce())->method('getParameters')->will($this->returnValue([])); $this->assertFalse($this->command->hasArguments()); }