/**
  * Tests the getRealTableName method with the wrong type of class.
  *
  * @return void
  *
  * @since  12.1
  */
 public function testGetRealTableName()
 {
     $instance = new JDatabaseImporterPostgresqlInspector();
     $instance->setDbo($this->dbo);
     $this->assertThat($instance->getRealTableName('#__test'), $this->equalTo('jos_test'), 'getRealTableName should return the name of the table with #__ converted to the database prefix.');
 }