TARGET_JVM and test message
[mono.git] / mcs / class / System.Web / Test / System.Web.UI.WebControls / FormViewTest.cs
index ae5be387aea3b2b19a345ecb535c2129a9b81755..dd3906549262597b192c1502f52c130a9800ed77 100644 (file)
@@ -500,6 +500,9 @@ namespace MonoTests.System.Web.UI.WebControls
                }\r
 \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_ItemsProperties ()\r
                {\r
                        Poker p = new Poker ();\r
@@ -578,6 +581,9 @@ namespace MonoTests.System.Web.UI.WebControls
                }\r
 \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_InitializePager ()\r
                {\r
                        Poker fv = new Poker ();\r
@@ -593,6 +599,9 @@ namespace MonoTests.System.Web.UI.WebControls
                }\r
                \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_CreateRow ()\r
                {\r
                        Poker fv = new Poker ();\r
@@ -616,6 +625,9 @@ namespace MonoTests.System.Web.UI.WebControls
                }\r
 \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_CreateTable ()\r
                {\r
                        Poker fv = new Poker ();\r
@@ -784,6 +796,9 @@ namespace MonoTests.System.Web.UI.WebControls
                }\r
 \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_DataBind ()\r
                {\r
                        Poker fv = new Poker ();\r
@@ -801,6 +816,9 @@ namespace MonoTests.System.Web.UI.WebControls
                private bool isDeleted = false;\r
 \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_DeleteItem ()\r
                {\r
                        Poker fv = new Poker ();\r
@@ -841,6 +859,9 @@ namespace MonoTests.System.Web.UI.WebControls
 \r
                private bool updateItem = false;\r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_UpdateItem ()\r
                {\r
                        Poker fv = new Poker ();\r
@@ -955,6 +976,9 @@ namespace MonoTests.System.Web.UI.WebControls
                }\r
 \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_BubbleEvent ()\r
                {\r
                        FormViewCommandEventArgs com;\r
@@ -1834,6 +1858,9 @@ CommandEventArgs cargs = new CommandEventArgs ("Page", "Prev");
                }\r
 \r
                [Test]\r
+#if TARGET_JVM //BUG #6484\r
+               [Category ("NotWorking")]\r
+#endif\r
                public void FormView_GetPostBackOptions () {\r
                        FormView fv = new FormView ();\r
                        fv.Page = new Page ();\r
@@ -1900,7 +1927,7 @@ CommandEventArgs cargs = new CommandEventArgs ("Page", "Prev");
 \r
        public class TestMyData\r
        {\r
-               static IList<int> str = (IList<int>) new int[] { 1, 2, 3, 4, 5, 6 };\r
+               static IList<int> str = new List<int> (new int[] { 1, 2, 3, 4, 5, 6 });\r
 \r
 \r
                public static IList<int> GetMyList ()\r