You are here

public function JsonLogDataTest::testCanSetRegularMessage in JSONlog 8

Same name and namespace in other branches
  1. 8.2 tests/src/Unit/JsonLogDataTest.php \Drupal\Tests\jsonlog\Unit\JsonLogDataTest::testCanSetRegularMessage()
  2. 3.x tests/src/Unit/JsonLogDataTest.php \Drupal\Tests\jsonlog\Unit\JsonLogDataTest::testCanSetRegularMessage()

File

tests/src/Unit/JsonLogDataTest.php, line 78

Class

JsonLogDataTest
Unit tests for JsonLogData class

Namespace

Drupal\Tests\jsonlog\Unit

Code

public function testCanSetRegularMessage() {
  $this->data = new JsonLogData('test_site_id', 'test_canonical');
  $this
    ->assertNull($this->data
    ->getMessage(), 'Message empty by default');
  $this->data
    ->setMessage('test logging item');
  $this
    ->assertEquals('test logging item', $this->data
    ->getMessage(), 'By default message gets logged.');
  $this
    ->assertEmpty($this->data
    ->getTrunc(), 'Message not truncated');
}