You are here

function ExampleWebTest::testStringConcat in X Autoload 7.2

File

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

Class

ExampleWebTest

Namespace

Drupal\xautoload_example\Tests

Code

function testStringConcat() {

  // TODO: We could something really web-testy here..
  $this
    ->assert('aa' + 'bb' == 'aabb', "'aa' + 'bb' == 'aabb'");
}