model = $objectManager->create(\Magento\Framework\ValidatorFactory::class); } public function testCreateWithInstanceName() { $setName = \Magento\Framework\DataObject::class; $this->assertInstanceOf($setName, $this->model->create([], $setName)); } public function testCreateDefault() { $default = \Magento\Framework\Validator::class; $this->assertInstanceOf($default, $this->model->create()); } }