If I try to mock a call to a shared method
Public Shared ReadOnly Property GetListAccessoiresTypes(Optional ByVal pReset As Boolean = False) As TList(Of AccessoiresTypes)
Get
Dim list As TList(Of AccessoiresTypes)
If Accessoirestypes Is Nothing Or pReset Then
list = DataRepository.AccessoiresTypesProvider.GetAll.FindAll(Function(c As AccessoiresTypes) CBool(c.Active) = True And String.IsNullOrEmpty(c.Code) = False)
Accessoirestypes = list
Else
list = Accessoirestypes
list.RemoveFilter()
End If
Return list
End Get
End Property
I get an error
You are using TheseCalls.ReturnValue incorrectly - Method get_GetListAccessoiresTypes in type xxx.xxx.listes does not return a value
My test method is
Dim target As AccessoiresCategoriesPlus = New AccessoiresCategoriesPlus() ' TODO: Initialize to an appropriate value
Dim oldMarge As [Decimal] = New [Decimal](0.5)
Dim newMarge As [Decimal] = New [Decimal](0.6)
target.Marge = oldMarge
Dim listAT As New TList(Of AccessoiresTypes)
Using TheseCalls.WillReturn(listAT)
Dim list = Listes.GetListAccessoiresTypes()
End Using
target.AjusterMarge(oldMarge, newMarge)
Assert.AreEqual(target.Marge, newMarge)
I am just getting started and some help would be greatly appreciated.