You are here

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\Tamper

Code

public function testFalseToInt() {
  $this
    ->assertEquals(0, $this->plugin
    ->tamper(FALSE));
}