คำถามติดแท็ก testcase

5
MSTest มีคุณสมบัติเทียบเท่ากับ TestCase ของ NUnit หรือไม่
ฉันพบว่าTestCaseคุณสมบัติใน NUnit มีประโยชน์มากเป็นวิธีที่รวดเร็วในการระบุพารามิเตอร์การทดสอบโดยไม่ต้องใช้วิธีแยกต่างหากสำหรับการทดสอบแต่ละครั้ง MSTest มีอะไรที่คล้ายกันหรือไม่? [TestFixture] public class StringFormatUtilsTest { [TestCase("tttt", "")] [TestCase("", "")] [TestCase("t3a4b5", "345")] [TestCase("3&5*", "35")] [TestCase("123", "123")] public void StripNonNumeric(string before, string expected) { string actual = FormatUtils.StripNonNumeric(before); Assert.AreEqual(expected, actual); } }

6
ฉันจะระบุการทดสอบเดี่ยวในไฟล์ที่มี nosetests ได้อย่างไร
ฉันมีไฟล์ชื่อ test_web.py ที่มีคลาส TestWeb และวิธีการมากมายที่มีชื่อว่า test_something () ฉันสามารถเรียกใช้การทดสอบทุกอย่างในชั้นเรียนดังนี้: $ nosetests test_web.py ... ====================================================================== FAIL: checkout test ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/me/path/here/test_web.py", line 187, in test_checkout ... แต่ดูเหมือนฉันจะทำการทดสอบแต่ละรายการไม่ได้ สิ่งเหล่านี้ทำให้ฉันมีข้อผิดพลาด "ไม่มีการทดสอบ" เมื่อทำงานใน PWD เดียวกัน: $ nosetests test_web.py:test_checkout $ nosetests TestWeb:test_checkout มีอะไรผิดปกติที่นี่?
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.