Генератор модульных испытаний/готовый образец
Привет, могу ли я узнать, есть ли какой-либо инструмент/библиотека/генератор, на который я могу ссылаться для создания общего метода модульного тестирования?
For example, i have a method that goes to DB to retrieve data, i need to ensure that method does not return null. For traditionally way, i need to code a unit test to check for that method(e.g. Assert.IsNullOrEmpty()). I hate to admit it here but due to my team's laziness that they are unwilling to write unit test codes for the development they have done(i am not their superior sigh), i am currently looking for any extention that i can use to help them to save some work load(like plug and play for Assert.IsNullOrEmpty()). For example, i can just press that dot(.) then an extension will pop out for me to choose which checking that i want to have w/o having to code the unit test coding.
Моя команда сейчас использует MOQ framework для своего модульного тестирования.
Любое предложение будет очень ценно. Спасибо.
Что я уже пробовал:
1. Поиск в интернете предложений, но безрезультатно.