public function CastToIntTest::testFalseToInt in Tamper 8
Test converting FALSE to int.
File
- tests/
src/ Unit/ Plugin/ Tamper/ CastToIntTest.php, line 60
Class
- CastToIntTest
- Tests the cast to int plugin.
Namespace
Drupal\Tests\tamper\Unit\Plugin\TamperCode
public function testFalseToInt() {
$this
->assertEquals(0, $this->plugin
->tamper(FALSE));
}