You are here

protected function WebformAssertLegacyTrait::assertNotEqual in Webform 6.x

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

See also

\Drupal\simpletest\TestBase::assertNotEqual()

13 calls to WebformAssertLegacyTrait::assertNotEqual()
WebformElementSameTest::testSame in tests/src/Functional/Element/WebformElementSameTest.php
Test same element.
WebformHandlerActionTest::testActionHandler in tests/src/Functional/Handler/WebformHandlerActionTest.php
Test action handler.
WebformHandlerEmailAdvancedTest::testAdvancedEmailHandler in tests/src/Functional/Handler/WebformHandlerEmailAdvancedTest.php
Test advanced email handler.
WebformHandlerPluginTest::testWebformHandlerDependencies in tests/src/Functional/Handler/WebformHandlerPluginTest.php
Tests webform handler plugin dependencies.
WebformScheduledEmailTest::testWebformScheduledEmail in modules/webform_scheduled_email/tests/src/Functional/WebformScheduledEmailTest.php
Tests webform schedule email handler.

... See full list

File

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

Class

WebformAssertLegacyTrait
Provides convenience methods for assertions in browser tests.

Namespace

Drupal\Tests\webform\Traits

Code

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