testing3.2 Python 단위 테스트 - assertRaises의 반대?, Python unittest - opposite of assertRaises? 질문 나는 특정한 상황에서 예외가 발생하지 않음을 확인하기 위해 테스트를 작성하고 싶습니다. 예외가 발생하는지 테스트하는 것은 간단합니다... sInvalidPath=AlwaysSuppliesAnInvalidPath() self.assertRaises(PathIsNotAValidOne, MyObject, sInvalidPath) ... 하지만 반대로 어떻게 할 수 있을까요. 다음과 같은 것을 원합니다... sValidPath=AlwaysSuppliesAValidPath() self.assertNotRaises(PathIsNotAValidOne, MyObject, sValidPath) 답변 def run_test(self): try: myFunc() except ExceptionType: self.fail.. 2023. 10. 18. Python 파이썬 단위 테스트는 어디에 위치해야 하나요? [닫힘], Where do the Python unit tests go? [closed] 질문 If you're writing a library, or an app, where do the unit test files go? It's nice to separate the test files from the main app code, but it's awkward to put them into a "tests" subdirectory inside of the app root directory, because it makes it harder to import the modules that you'll be testing. Is there a best practice here? 답변 파일 module.py의 경우, 일반적으로 유닛 테스트는 Pythonic 네이밍 규칙을 따라 test_module.. 2023. 9. 19. 이전 1 다음