Ejemplo n.º 1
0
        public void MiddleTier_GetTable()
        {
            DataTable table = WebServiceTests.GetTable();

            Assert.IsTrue(table != null && table.Rows != null &&
                          table.Rows.Count > 0 &&
                          table.Rows[0]["Col1"] != null &&
                          table.Rows[0]["Col1"].ToString() == "cell00");
        }