/** * Test building a unique cache key component for shortcode customizations * * @since 1.0.0 * * @covers ::getOEmbedCacheKeyCustomParameters * @small * * @return void */ public function testGetOEmbedCacheKeyCustomParameters() { $this->assertEquals('', \Twitter\WordPress\Shortcodes\EmbeddedTweetVideo::getOEmbedCacheKeyCustomParameters(array('hide_tweet' => true)), 'Failed to set an empty cache modifier key'); }
/** * Test building a unique cache key component for shortcode customizations * * @since 1.0.0 * * @covers ::getOEmbedCacheKeyCustomParameters * @small * * @return void */ public function testGetOEmbedCacheKeyCustomParameters() { $this->assertEquals('h', \Twitter\WordPress\Shortcodes\EmbeddedTweetVideo::getOEmbedCacheKeyCustomParameters(array('hide_tweet' => true)), 'Failed to set a unique cache key for the hide Tweet customization'); }