_helper = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( \Magento\Framework\Url\Helper\Data::class ); } public function testGetCurrentBase64Url() { $this->assertEquals('aHR0cDovL2xvY2FsaG9zdDo4MS8,', $this->_helper->getCurrentBase64Url()); } public function testGetEncodedUrl() { $this->assertEquals('aHR0cDovL2xvY2FsaG9zdDo4MS8,', $this->_helper->getEncodedUrl()); $this->assertEquals('aHR0cDovL2V4YW1wbGUuY29tLw,,', $this->_helper->getEncodedUrl('http://example.com/')); } }