21 private $objectManagerHelper;
28 $this->objectManagerHelper =
29 new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
31 $this->subject = $this->objectManagerHelper->getObject(
41 $this->subject->setValue(
'Apps and Games');
43 $this->assertInstanceOf(
45 $this->subject->beforeSave()
55 $this->subject->setValue(
'');
57 $this->subject->beforeSave();
testBeforeSaveFailedWithLocalizedException()