assertTrue(function_exists('wu_to_float')); $this->assertTrue(function_exists('wu_replace_dashes')); $this->assertTrue(function_exists('wu_get_initials')); } public function testLoaded() { $wpUltimo = \WP_Ultimo(); $this->assertTrue($wpUltimo->version === \WP_Ultimo::VERSION); $this->assertTrue($wpUltimo->is_loaded()); } public function testPublicProperties() { $wpUltimo = \WP_Ultimo(); $this->assertTrue($wpUltimo->settings instanceof Settings); $this->assertTrue($wpUltimo->helper instanceof Helper); $this->assertTrue($wpUltimo->notices instanceof Admin_Notices); $this->assertTrue($wpUltimo->scripts instanceof Scripts); $this->assertTrue($wpUltimo->currents instanceof Current); } }