1
我需要獲取大量參數才能動態構建測試方法。我的限制是它必須在MSTest和C#中。在集成測試中獲取參數MSTesting C#
我在想什麼是喜歡的東西:
[TestMethod]
public void test1 (int x, int y, string url, double l)
{
// Use parameters here
}
我知道這是不可能的,我明白了。但那最終是我需要得到的。
任何人都可以分享一些見解嗎?