Hypernode\Magento\Command\AbstractHypernodeCommandTest::testGetter PHP Метод

testGetter() публичный Метод

public testGetter ( )
    public function testGetter()
    {
        $abstract = $this->_abstract;
        $origCurl = $abstract->getCurl();
        $this->assertInstanceOf(Curl::class, $origCurl);
        $abstract->setCurl(new Curl());
        $this->assertNotEquals($origCurl, $abstract->getCurl());
    }
AbstractHypernodeCommandTest