You are here

public function CastToIntTest::testTrueToInt in Tamper 8

Test converting TRUE to int.

File

tests/src/Unit/Plugin/Tamper/CastToIntTest.php, line 53

Class

CastToIntTest
Tests the cast to int plugin.

Namespace

Drupal\Tests\tamper\Unit\Plugin\Tamper

Code

public function testTrueToInt() {
  $this
    ->assertEquals(1, $this->plugin
    ->tamper(TRUE));
}