Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CheckboxSetTest.php
Go to the documentation of this file.
1 <?php
7 
9 
16 {
20  protected function getModelName()
21  {
22  return CheckboxSet::class;
23  }
24 
25  public function testGetComponentName()
26  {
27  $this->assertSame(CheckboxSet::NAME, $this->getModel()->getComponentName());
28  }
29 
30  public function testGetIsSelected()
31  {
32  $this->assertSame(false, $this->getModel()->getIsSelected(''));
33  }
34 }