You are here

public function IssueTest::testTitle in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/IssueTest.php, line 23

Class

IssueTest
@group DMU

Namespace

Drupal\Tests\drupalmoduleupgrader\Unit

Code

public function testTitle() {
  $this->issue
    ->setTitle('Foobar');
  $this
    ->assertEquals('Foobar', $this->issue
    ->getTitle());
}