Example #1
0
 public function testGetAliasValidAliasRequest()
 {
     $config = new \Phinx\Config\Config(array('aliases' => array('Short' => 'Some\\Long\\Classname')));
     $this->assertEquals('Some\\Long\\Classname', $config->getAlias('Short'));
 }