public void TestDisabledExit()
 {
     AddStep("create content", () =>
     {
         Child = new PopupScreenTitle
         {
             Title       = "Popup Screen Title",
             Description = "This is a description."
         };
     });
 }
 public void TestPopupScreenTitle()
 {
     AddStep("create content", () =>
     {
         Child = new PopupScreenTitle
         {
             Title       = "Popup Screen Title",
             Description = string.Join(" ", Enumerable.Repeat("This is a description.", 20)),
             Close       = () => { }
         };
     });
 }