. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace tests\unit\Espo\Core\FieldProcessing; use Espo\Core\{ FieldProcessing\Saver\Params, ORM\Repository\Option\SaveOption}; class SaverParamsTest extends \PHPUnit\Framework\TestCase { public function testOne(): void { $options = [ SaveOption::SILENT => true, ]; $params = Params ::create() ->withRawOptions($options); $this->assertEquals(true, $params->getOption('silent')); $this->assertEquals(true, $params->hasOption('silent')); $this->assertEquals(null, $params->getOption('skipHooks')); $this->assertEquals(false, $params->hasOption('skipHooks')); $this->assertEquals($options, $params->getRawOptions()); } }