You are here

protected function XAutoloadWebTestCase::assertEqualInline in X Autoload 7.4

Same name and namespace in other branches
  1. 7.5 lib/Drupal/xautoload/Tests/XAutoloadWebTestCase.php \Drupal\xautoload\Tests\XAutoloadWebTestCase::assertEqualInline()

Parameters

mixed $expected:

mixed $actual:

string $label:

1 call to XAutoloadWebTestCase::assertEqualInline()
XAutoloadWebTestCase::xautoloadCheckTestEnvironment in lib/Drupal/xautoload/Tests/XAutoloadWebTestCase.php

File

lib/Drupal/xautoload/Tests/XAutoloadWebTestCase.php, line 248

Class

XAutoloadWebTestCase

Namespace

Drupal\xautoload\Tests

Code

protected function assertEqualInline($expected, $actual, $label) {
  $label .= '<br/>' . 'Expected: <code>' . var_export($expected, TRUE) . '</code><br/>' . 'Actual: <code>' . var_export($actual, TRUE) . '</code>';
  $this
    ->assertEqual($expected, $actual, $label);
}