objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); $this->model = $this->objectManager->create(\Magento\Framework\Message\CollectionFactory::class); } public function testCreate() { $message = $this->model->create(); $this->assertInstanceOf(\Magento\Framework\Message\Collection::class, $message); } }