You appear to be a bot. Output may be restricted
Description
Tests the path where the current filter is not admin_notices for bb_BB Functions in oik_plugin_oik_install_link() are tested elsewhere
Usage
Tests_libs_oik_activation::test_oik_plugin_plugin_inactive_bb_BB();
Parameters
Returns
voidSource
File name: oik-libs/tests/test-libs-oik-activation.phpLines:
1 to 15 of 15
function test_oik_plugin_plugin_inactive_bb_BB() { $this->switch_to_locale( "bb_BB" ); ob_start(); oik_plugin_plugin_inactive( "us-tides/us-tides.php", "oik:3.1" ); $html = ob_get_contents(); ob_end_clean(); $this->assertNotNull( $html ); //$this->generate_expected_file( $html ); $this->assertArrayEqualsFile( $html ); $this->switch_to_locale( "en_GB" ); }View on GitHub