/**
  * Tests whether the keywords that should not be converted are not converted.
  *
  * @param string $keyword The keyword that is to be tested; this is provided
  *     by the dataprovider.
  *
  * @covers \phpDocumentor\Reflection\DocBlock::expandType()
  *
  * @dataProvider getNonExpandableKeywordsForExpandType
  *
  * @return void
  */
 public function testThatExpandTypeDoesNotExpandAllKeywords($keyword)
 {
     $docblock = new DocBlock('', '\\My\\Namespace');
     $this->assertEquals($keyword, $docblock->expandType($keyword));
 }