«testcase» 태그된 질문

5
MSTest에는 NUnit의 TestCase와 동일한 기능이 있습니까?
TestCaseNUnit 의 기능은 각 테스트에 대해 별도의 방법이 필요없이 테스트 매개 변수를 지정하는 빠른 방법으로 매우 유용합니다. 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
nosetest가있는 파일에서 단일 테스트를 지정하려면 어떻게합니까?
TestWeb 클래스와 test_something ()과 같은 많은 메서드를 포함하는 test_web.py라는 파일이 있습니다. 클래스의 모든 테스트를 다음과 같이 실행할 수 있습니다. $ 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에서 실행할 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.