You are here

function ExampleTest::testStringConcat in X Autoload 7.2

File

modules/xautoload_example/lib/Drupal/xautoload_example/Tests/ExampleTest.php, line 15

Class

ExampleTest

Namespace

Drupal\xautoload_example\Tests

Code

function testStringConcat() {
  $this
    ->assert('aa' + 'bb' == 'aabb', "'aa' + 'bb' == 'aabb'");
}