0
我正在嘗試使用Pex和Moles測試框架來測試我的項目。Pex測試框架使用自定義對象
我對使用Pex進行參數化測試有個小想法。
void SampleMethod(Employee emp)
{
/// Some business logic
}
void SampleMethod(List<Employee> emps)
{
/// Some business logic
}
如何測試這些類型的方法?
感謝 Ashwani