HsacAcceptanceTests.SlimTests.UtilityFixtures.HtmlFixture


Html Fixture allows HTML (fragments) obtained from an application being tested to be show as 'source' (i.e. the HMTL tags and not what they render like) or to explicitly ensure tags are rendered inside the test's page.

script html fixture
$source<-[
<b>hot</b> and <i>cold</i>
]
html source hot and cold
show html $source->[
<b>hot</b> and <i>cold</i>
]
hot and cold