Admin_Apple_Notice_Test::testInfo PHP Method

testInfo() public method

public testInfo ( )
    public function testInfo()
    {
        Admin_Apple_Notice::info('This is an info message', $this->user_id);
        ob_start();
        Admin_Apple_Notice::show();
        $notice = ob_get_contents();
        ob_end_clean();
        $expected = preg_replace('/\\s+/', '', '<div class="notice updated is-dismissible"><p><strong>This is an info message</strong></p></div>');
        $notice = preg_replace('/\\s+/', '', $notice);
        $this->assertEquals($expected, $notice);
    }