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