You are here

protected function WebformAssertLegacyTrait::assertNotIdentical in Webform 6.x

Same name and namespace in other branches
  1. 8.5 tests/src/Traits/WebformAssertLegacyTrait.php \Drupal\Tests\webform\Traits\WebformAssertLegacyTrait::assertNotIdentical()

See also

\Drupal\simpletest\TestBase::assertNotIdentical()

File

tests/src/Traits/WebformAssertLegacyTrait.php, line 47

Class

WebformAssertLegacyTrait
Provides convenience methods for assertions in browser tests.

Namespace

Drupal\Tests\webform\Traits

Code

protected function assertNotIdentical($expected, $actual, $message = '') {
  $this
    ->assertNotSame($expected, $actual, $message);
}