You are here

public function CastToIntTest::testDecimalToInt in Tamper 8

Test converting decimal to int.

File

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

Class

CastToIntTest
Tests the cast to int plugin.

Namespace

Drupal\Tests\tamper\Unit\Plugin\Tamper

Code

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