Site icon Hip-Hop Website Design and Development

The way to take a look at wordpress admin content material in PHPUnit?

How I can take a look at the html-content of my plugin in wp-admin with PHPUnit assessments.
I need one thing like this:

set_current_screen('admin_page_myplugin');
$html = $this->getOriginalHTML();
$this->assertContains('My plugin distinctive content material', $html);

Thanks!