Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
NullTypeTest.php
Go to the documentation of this file.
1 <?php
7 
8 use \Magento\Framework\Data\Argument\Interpreter\NullType;
9 
10 class NullTypeTest extends \PHPUnit\Framework\TestCase
11 {
12  public function testEvaluate()
13  {
14  $object = new NullType();
15  $this->assertNull($object->evaluate(['unused']));
16  }
17 }