public function testGetChangeLogsAsTableRows()
 {
     $rfc = new Rfc();
     $rfc->setChangelog(['v0.5:' => 'Removed integer support, so the strictness is consistent.', 'v0.4:' => 'Removed possibility to check multiple values using an array.']);
     $result = $this->rfcService->getChangeLogsAsTableRows($rfc);
     $expected = [['v0.5:', 'Removed integer support, so the strictness is consistent.'], ['v0.4:', 'Removed possibility to check multiple values using an array.']];
     $this->assertSame($expected, $result);
 }