public function testIfWillGetBuildInformationWithModelParam()
 {
     $cmd = new Command(new ModelWithSecondConnection());
     $info = $cmd->buildinfo();
     $this->assertTrue(array_key_exists('version', $info));
     $cmd = new Command(new SimplePrimaryKey());
     $info = $cmd->buildinfo();
     $this->assertTrue(array_key_exists('version', $info));
 }