You appear to be a bot. Output may be restricted
Description
Usage
Tests_Option_Registration::test_add_option_with_no_options_cache();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/option/registration.php
Lines:
1 to 13 of 13
public function test_add_option_with_no_options_cache() { register_setting( 'test_group', 'test_default', array( 'default' => 'My Default :)', ) ); wp_cache_delete( 'notoptions', 'options' ); $this->assertTrue( add_option( 'test_default', 'hello' ) ); $this->assertSame( 'hello', get_option( 'test_default' ) ); }