public void HE_CreatesExpectedHtml()
            {
                const string EXPECTED_HTML =
                    @"<html>
<body>
<!--StartFragment-->
Fill in the blanks below with 2 letter words. The word that you use three times is the solution to the puzzle.<br>
__M<br>
__N<br>
__Y<br>
__D<br>
__DS<br>
__ID<br>
C__P<br>
Solution: _ _ 
<!--EndFragment-->
</body>
</html>
";
                MissingLettersPuzzle puzzle = new MissingLettersPuzzle()
                {
                    Shuffle = false
                };

                puzzle.PlaceSolution("he");
                Assert.AreEqual(EXPECTED_HTML, puzzle.FormatHtmlForGoogle());
            }