Python 유닛 테스트장식 기 를 사용 하여 테스트 건 너 뛰 기와 예상 고장 을 실현 하 는 방법

Python 유닛 테스트 unittest 에 서 는 네 가지 장식 기 를 제공 하여 테스트 건 너 뛰 기와 예상 고장 을 실현 합 니 다.(Python 2.7.13 사용)
Python 매 뉴 얼 중:
https://docs.python.org/dev/library/unittest.html
The following decorators implement test skipping and expected failures:
\#아래 장식 기 테스트 건 너 뛰 기 및 예상 고장:
@unittest.skip(원인)
Unconditionally skip the decorated test. reason should describe why the test is being skipped.
\#장식 테스트 를 무조건 건 너 뜁 니 다.이 유 는 왜 테스트 를 뛰 어 넘 었 는 지 설명해 야 한다.
@unittest.skipIf(조건,원인)
Skip the decorated test if condition is true.
\#조건 이 사실 이 라면 장식 테스트 를 건 너 뜁 니 다.
@unittest.skipUnless(조건,원인)
Skip the decorated test unless condition is true.
\#조건 이 사실 이 아니라면 장식 테스트 를 건 너 뜁 니 다.
@unittest.expectedFailure
Mark the test as an expected failure. If the test fails when run, the test is not counted as a failure.
\#테스트 를 예상 한 실패 로 표시 합 니 다.테스트 가 실 패 했 을 때 실패 하면 테스트 는 실패 로 간주 되 지 않 습 니 다.
(이상 구 글 번역 을 사용 하면 차이 가 있 을 수 있 습 니 다)
자,코드 를 써 보 세 요.test.py,사용 하 는 Eclipse.

#coding:UTF-8
import unittest
from test.test_pprint import uni
class Test_ce(unittest.TestCase):
  a=16
  b=10
  
  @unittest.skip('     ')
  def test_ce1(self):
    self.assertEqual((self.a-self.b), 16)
    #      
    
  @unittest.skipIf(True==1, '       ')
  def test_ce_2(self):
    self.assertFalse(self.a==self.b)
    #     False
    
  @unittest.skipUnless(1==1, '       ')
  def test_ce_3(self):
    self.assertTrue(self.a>16)
    #     True

  @unittest.expectedFailure
  def test_ce_4(self):
    self.assertFalse(self.a==16)
    
  @unittest.expectedFailure 
  def test_ce_5(self): 
    self.assertFalse(self.a==15)
    
if __name__ == '__main__':
  unittest.main()
네,운행 해 주세요.

ssFxu
======================================================================
FAIL: test_ce_3 (__main__.Test_ce)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "D:\Escplise\workspace\Pytest\src\test001\CE.py", line 20, in test_ce_3
  self.assertTrue(self.a>16)
AssertionError: False is not true

----------------------------------------------------------------------
Ran 5 tests in 0.000s

FAILED (failures=1, skipped=2, expected failures=1, unexpected successes=1)
알 겠 습 니 다.첫 번 째 줄 코드 를 분석 하 겠 습 니 다.
s:전 칭 skipped(건 너 뛰 기)
s:조건 이 진짜 이기 때문에 skipped(건 너 뛰 기)
F:조건 이 진실 이기 때문에 장식 기 를 무시 하고 단언 코드 를 실행 합 니 다.분명히 failures(실패)입 니 다.
x:단언 결 과 는 분명히 실 패 했 지만 이것 은 우리 가 예상 한 것 이기 때문에 expected failures(예상 한 실패)이다.
u:단언 결 과 는 분명히 패스 입 니 다.그러나 우 리 는 통과 하지 못 할 것 이 라 고 예상 하기 때문에 unexpected successes(예상 치 못 한 성공)입 니 다.
즉 13 줄 코드  FAILED (failures=1, skipped=2, expected failures=1, unexpected successes=1)
이상 이 Python 단원 테스트인 테 리 어 를 사용 하여 테스트 건 너 뛰 기와 예상 고장 을 실현 하 는 방법 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 께 참고 가 되 고 저희 도 많이 응원 해 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기