httpContext = $this->getMockBuilder(\Magento\Framework\App\Http\Context::class) ->disableOriginalConstructor()->getMock(); $this->block = (new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this)) ->getObject(\Magento\Customer\Block\Account\Customer::class, ['httpContext' => $this->httpContext]); } /** * @return array */ public function customerLoggedInDataProvider() { return [ [1, true], [0, false], ]; } /** * @param $isLoggedIn * @param $result * @dataProvider customerLoggedInDataProvider */ public function testCustomerLoggedIn($isLoggedIn, $result) { $this->httpContext->expects($this->once())->method('getValue') ->with(\Magento\Customer\Model\Context::CONTEXT_AUTH) ->willReturn($isLoggedIn); $this->assertSame($result, $this->block->customerLoggedIn($isLoggedIn)); } }