【发布时间】:2011-10-25 22:04:19
【问题描述】:
我想知道您是否可以帮助我理解最小起订量的概念...我有一种方法要测试。它包含我要模拟的数据访问方法。
测试方法:
Public Function GetReport(ByVal district As String, ByVal hub As String, ByVal dateFrom As Date, ByVal dateTo As Date, ByVal response As HttpResponse) As String
Dim msg As String = String.Empty
Dim rs As New ReportingService
_dt = _dal.GetData(district, hub, dateFrom, dateTo)
If _dt.Rows.Count <= 0 Then
msg = "There were no records found for the selected criteria."
ElseIf _dt.Rows.Count + 1 > 65536 Then
msg = "Too many rows - Export to Excel not possible."
Else
rs.Export(_dt, "AcceptanceOfOffer", response)
End If
Return msg
End Function
我想测试控制逻辑。如果数据表有 0,1 或多行,则应返回不同的消息。我不关心 _dal.GetData 的结果,这是我希望模拟的方法。
这是我的测试,没有 nunit 或类似的东西:
'''<summary>
'''A test for GetReport
'''</summary>
<TestMethod()> _
Public Sub GetReportTest()
'Create a fake object
Dim mock = New Mock(Of IAcceptanceOfferDAL)
'Create the real data to be returned by the fake
Dim returnDt As DataTable = New DataTable()
returnDt.Columns.Add("District", Type.GetType("System.String"))
returnDt.Columns.Add("Hub", Type.GetType("System.String"))
returnDt.Columns.Add("dateFrom", Type.GetType("System.DateTime"))
returnDt.Columns.Add("dateTo", Type.GetType("System.DateTime"))
returnDt.Rows.Add("District", "Hub", Date.Today, Date.Today)
'Setup the fake so that when the method is called the data created above will be returned
mock.Setup(Function(f) f.GetData(It.IsAny(Of String), It.IsAny(Of String), It.IsAny(Of Date), It.IsAny(Of Date))).Returns(returnDt)
'Call the real method with the expectation that when it calls GetData it will use our mock object
Dim target = New AcceptanceOfferBLL
Dim response As HttpResponse
Dim actual = target.GetReport("district", "hub", Date.Today, Date.Today, response)
'Because our mock returns 1 row it will skip over our if statements and should return string.empty
Assert.AreEqual("", actual)
End Sub
以防万一,我试图模拟的 DAL 类和方法。
Public Interface IAcceptanceOfferDAL
Function GetData(ByVal district As String, ByVal site As String, ByVal dateFrom As Date, ByVal dateTo As Date) As DataTable
End Interface
Public Class AcceptanceOfferDAL : Implements IAcceptanceOfferDAL
Private _ds As New DataService.DataAccess
Private _sNameSP As String = ""
Private _listSQLParams As New List(Of SqlParameter)
Public Function GetData(ByVal district As String, ByVal site As String, ByVal dateFrom As Date, ByVal dateTo As Date) As DataTable Implements IAcceptanceOfferDAL.GetData
_sNameSP = "up_AcceptanceHub_get"
Dim sqlParam As SqlParameter = New SqlParameter("@district", district)
Dim sqlParam1 As SqlParameter = New SqlParameter("@hub", site)
Dim sqlParam2 As SqlParameter = New SqlParameter("@DateFrom", dateFrom)
Dim sqlParam3 As SqlParameter = New SqlParameter("@DateTo", dateTo)
_listSQLParams.Add(sqlParam)
_listSQLParams.Add(sqlParam1)
_listSQLParams.Add(sqlParam2)
_listSQLParams.Add(sqlParam3)
Return (_ds.LoadDataTableByID(_listSQLParams, _sNameSP))
End Function
End Class
显然这不起作用,我检查了起订量快速入门和其他 places 没有成功。这甚至可能还是我应该使用 .verify 或其他东西? This post 具有我想要使用的结构,除非在这种情况下,模拟对象作为参数传递给方法。
【问题讨论】:
-
你能澄清一下“这不起作用”是什么意思吗?
-
代码转到真正的具体 dal.GetData 方法,而不是该方法的代理版本。它尝试连接到数据库并返回信息,而不是我在测试中创建的虚拟数据集。
-
您永远不会将模拟 IAcceptanceOfferDAL 传递给 AcceptanceOfferBLL。 AcceptanceOfferBLL 的“_dal”变量是如何创建的?它应该是在运行时通过 IOC 容器注入的构造函数依赖项,但在测试期间被模拟。
-
依赖注入是唯一的选择吗?你能解释一下除了让测试正常工作之外的好处吗?
-
使用带有依赖注入的 IoC 容器有很多好处——尤其是在可测试性方面。一些谷歌搜索“控制模式反转”会产生很多结果。
标签: vb.net unit-testing moq