You are here

public function CastToIntTest::testDecimalStringToInt in Tamper 8

Test converting decimal string to int.

File

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

Class

CastToIntTest
Tests the cast to int plugin.

Namespace

Drupal\Tests\tamper\Unit\Plugin\Tamper

Code

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