/**
  * Test constant __DIR__. Must return name of the folder where the source file of routine the is located.
  */
 public function test4()
 {
     $dir_name = realpath(__DIR__ . '/../../test/MySql/psql');
     $ret = DataLayer::magicConstant04();
     $this->assertEquals($dir_name, $ret);
 }