_block = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( \Magento\Framework\View\LayoutInterface::class )->createBlock( \Magento\Customer\Block\Account\Dashboard\Info::class ); } public function testGetSubscriptionObject() { $object = $this->_block->getSubscriptionObject(); $this->assertInstanceOf(\Magento\Newsletter\Model\Subscriber::class, $object); $object2 = $this->_block->getSubscriptionObject(); $this->assertSame($object, $object2); } }