Ejemplo n.º 1
0
        public void Theme_SetThemeException()
        {
            string page = new WebTest(PageInvoker.CreateOnPreInit(SetThemeExeption)).Run();

            Assert.IsTrue(page.IndexOf("System.Web.HttpException") >= 0, "System.Web.HttpException was expected, actual result: " + page);
        }
Ejemplo n.º 2
0
 public void OnBubbleEventCaseSensitivity()
 {
     WebTest t    = new WebTest(PageInvoker.CreateOnPreInit(_OnBubbleEventCaseSensitivity));
     string  html = t.Run();
 }
Ejemplo n.º 3
0
 public void OnBubbleEvent_Authenticated_OnAuthenticate()
 {
     WebTest t    = new WebTest(PageInvoker.CreateOnPreInit(_OnBubbleEvent_Authenticated_OnAuthenticate));
     string  html = t.Run();
 }
Ejemplo n.º 4
0
 public void OnBubbleEvent()
 {
     WebTest t    = new WebTest(PageInvoker.CreateOnPreInit(_OnBubbleEvent));
     string  html = t.Run();
 }