0

クラスをテストしています。私のメソッドは、指定されたポリシー ID に対して支払われた保険料率と財務制限の配列を返します。ポリシー ID 43 の場合、財務限度額は null であり、支払われる保険のパーセンテージは 95.75 です。これをテストしようとしていますが、テストは失敗し続けます。どこが間違っているのか誰にもわかりますか?

ここに私のクラスがあります

public class PatientInsuranceLimits : System.Web.UI.Page
{

    String sqlConStr = ConfigurationManager.ConnectionStrings["connectionname"].ToString();


    public String[] generalLimits(String policyID)
    {
        String []resultset = new String[2];
        SqlConnection con = new SqlConnection(sqlConStr);
        String sqlQuery1 = "Select InsurancePaidPercentage as iPP, FinancialLimit as fLimit from Policy where ID=@poid";

        SqlCommand cmd1 = new SqlCommand(sqlQuery1, con);
       cmd1.Parameters.AddWithValue("@poid", policyID);

       try
       { 
        con.Open();
           SqlDataReader r = cmd1.ExecuteReader();
           while(r.Read()){
               resultset[0] = r[0].ToString();
               resultset[1] = r[1].ToString();

           }
           r.Close();
       }
       catch(Exception ex){

        }
        finally{
            con.Close();
       }

       return resultset;

    }

ここに私のテストクラスがあります

namespace _10_06_13_test

{
    [TestClass()]
    public class PatientInsuranceLimitsTest
    {
        private TestContext testContextInstance;

        public TestContext TestContext
        {
            get
            {
                return testContextInstance;
            }
            set
            {
                testContextInstance = value;
            }
        }

        [DataSource("System.Data.SqlClient", "Data Source=servername_lab;Initial Catalog=IDKit;User ID=userid;Password=password", "mytable", DataAccessMethod.Sequential), TestMethod()]
        [HostType("ASP.NET")]
        [AspNetDevelopmentServerHost("C:\\Users", "/")]
        [UrlToTest("http://localhost:51063/")]
        public void generalLimitsTest()
        {
            SurvivalHealth.PatientInsuranceLimits target = new SurvivalHealth.PatientInsuranceLimits(); 
            string policyID = "43";
            string[] expected = new string[] {"95.75"};
            string[] actual;
            actual = target.generalLimits(policyID);
            Assert.AreEqual(expected, actual);
        }
    }
}       
4

1 に答える 1