C# 第三章单测

来源:互联网 发布:sublime php 语法检查 编辑:程序博客网 时间:2024/06/03 13:38

创建单测项

添加引用


using System;using Microsoft.VisualStudio.TestTools.UnitTesting;using System.Data;using MySchool.DAL;namespace 测试单测{    [TestClass]    public class UnitTest1    {        [TestMethod]        public void TestMethod1()        {            //测试查询姓名:            StudentDAL dat = new StudentDAL();            DataTable ta = dat.Chaxun("李小龙");            foreach (DataRow it in ta.Rows)            {                Console.WriteLine(it["Studentno"]);            }        }        [TestMethod]        public void TestMethod2()        {            //测试查询年级:            StudentDAL dat2 = new StudentDAL();            DataTable ta2 = dat2.ChaxunGrade(1);            foreach (DataRow it in ta2.Rows)            {                Console.WriteLine(it["Studentno"]);            }        }           }}



0 0
原创粉丝点击