/** * Constructor. Sets up the properties. * * @param Updater $updater Updater. * @param \wpdb $wpdb Database object. * @param Taxonomy $taxonomy Taxonomy model. */ public function __construct(Updater $updater, \wpdb $wpdb, Taxonomy $taxonomy) { $this->version_option_name = $updater->get_option_name(); $this->wpdb = $wpdb; $this->taxonomy = $taxonomy->get_name(); }
/** * @covers tfrommen\MetaTaxonomy\Update\Updater::get_option_name * * @return void */ public function test_get_option_name() { $testee = new Testee(); $this->assertSame('meta_taxonomy_version', $testee->get_option_name()); }