コード例 #1
0
ファイル: HttpTest.php プロジェクト: IlyaGluschenko/test001
 public function testGetBasePathWithoutPath()
 {
     $this->_model = $this->getModel();
     $this->_model->setBasePath(null);
     $this->assertEquals('/', $this->_model->getBasePath());
 }
コード例 #2
0
ファイル: HttpTest.php プロジェクト: Atlis/docker-magento2
 public function testGetBasePathWithoutPath()
 {
     $this->_model = new Request($this->_routerListMock, $this->_infoProcessorMock);
     $this->_model->setBasePath();
     $this->assertEquals('/', $this->_model->getBasePath());
 }