示例#1
0
 public function testIsScopeDateInInterval()
 {
     $scope = $this->getMock('Magento\\Framework\\App\\ScopeInterface', ['getCode', 'getId']);
     $this->scopeResolver->expects($this->any())->method('getScope')->will($this->returnValue($scope));
     $this->dateTime->expects($this->at(0))->method('isEmptyDate')->will($this->returnValue(false));
     $this->dateTime->expects($this->at(1))->method('isEmptyDate')->will($this->returnValue(false));
     $this->dateTime->expects($this->at(2))->method('isEmptyDate')->will($this->returnValue(true));
     $this->dateTime->expects($this->at(3))->method('isEmptyDate')->will($this->returnValue(true));
     $this->assertFalse($this->timezone->isScopeDateInInterval('store'));
     $this->assertTrue($this->timezone->isScopeDateInInterval('store', null, '10 September 2036'));
 }