2017-09-23 46 views

回答

3

的正確方法以匹配負平等是鏈equal_to方法與is_not方法

from hamcrest import * 
assert_that('1', is_not(equal_to('1'))) 
相關問題