/**
  * test method
  */
 public function testGetMethod()
 {
     $helper = WD_Helper_Taxonomy::getInstance();
     wd_update_term_meta(1, 'key', 'myvalue');
     $this->assertEquals('myvalue', $helper->get('key', 1));
 }
 /**
  * Singleton
  * 
  * @return self
  */
 public static function getInstance()
 {
     return self::$instance ? self::$instance : (self::$instance = new self());
 }
/**
 * Returns a instance of WD_Helper_Taxonomy
 * 
 * This class helps the user retrieve data saved by the creator
 * 
 * @return WD_Helper_Taxonomy
 */
function wd_tax()
{
    return WD_Helper_Taxonomy::getInstance();
}