0

我有一个类(非(DAL)),它从数据库中获取数据并以所需的格式(以特定的类格式)将其提供给我。

现在我需要编写一个单元测试用例,但 TestContext Data 行总是返回单行。

我想用我的存储过程填充 TestContext 。请告诉我如何指定存储过程名称。提前致谢。

这是代码。

public static List<TextValueField> ExternalDataGet(int providerId)
    {
        return ListFactory<TextValueField>.Create(Keys.QAT, "[stats].[GetExternalDataV2]", new object[] { providerId }, TextValueField.Factory);
    }
public static List<T> Create(string key, string sp, object[] parameters, FactoryDelegate factory)
    {
        List<T> list = new List<T>();
        Database db = DatabaseFactory.CreateDatabase(key);
        string connectionString = db.ConnectionStringWithoutCredentials;

        using (DbCommand cmd = db.GetStoredProcCommand(sp, parameters))
        {
            try
            {
                using (cmd.Connection = db.CreateConnection())
                {
                    cmd.Connection.Open();
                    cmd.CommandTimeout = 0;
                    using (DbDataReader reader = cmd.ExecuteReader())
                    {
                        try
                        {
                            while (reader.Read())
                                list.Add(factory(reader));
                        }
                        finally
                        {
                            if (!reader.IsClosed)   
                                reader.Close();
                        }
                    }
                    cmd.Connection.Close();
                }
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex.Message);
                throw new DataAccessException(ex, key, connectionString, sp, parameters);
            }
            finally
            {
                if (cmd.Connection != null)
                    if (cmd.Connection.State == ConnectionState.Open)
                        cmd.Connection.Close();
            }
        }
        return list;
    }
4

1 回答 1

0

我想用我的存储过程填充 TestContext 。请告诉我如何指定存储过程名称。

这应该可以处理您的请求。

public static List<TextValueField> ExternalDataGet(int providerId, string storedProc = "[stats].[GetExternalDataV2]")
{
    return ListFactory<TextValueField>.Create(Keys.QAT, storedProc, new object[] { providerId }, TextValueField.Factory);
}
于 2012-05-04T14:28:50.327 回答