gpt4 book ai didi

python - pytest 错误(pytest 和 TDD 新手)

转载 作者:太空宇宙 更新时间:2023-11-04 10:55:51 25 4
gpt4 key购买 nike

我在尝试测试实例变量的长度时遇到问题。我不断收到此错误:

________________________________________ ERROR collecting test_Person.py _________________________________________
test_Person.py:7: in <module>
person1 = Person("Tara", "Manderson", "F")
E TypeError: 'module' object is not callable
------------------------------------------------ Captured stdout -------------------------------------------------
gender is:
F
last name is:
Manderson
first name is:
Tara
Ms. Tara Manderson is:
S
Ms. Tara Manderson
gender is:
M
last name is:
Murray
first name is:
Christopher
Mr. Christopher Murray is:
S
Mr. Christopher Murray
============================================ 1 error in 0.18 seconds =============================================

有人可以解释和/或帮助我理解该怎么做吗?这是我的代码:

人.py 人类(对象):

    def __init__(self, first, last, sex):
try:
self.first = str(first)
self.last = str(last)
if (((sex=="M") or (sex=="F")) and (len(sex)==1)):
self.sex = sex
elif ((not(sex=="M") or not(sex=="F")) or not(len(sex)==1)):
raise UserWarning("Invalid Input! Use \"M\" for male or \"F\" for female.")
else:
raise TypeError("Not a valid gender! Use \"M\" for male or \"F\" for female.")
self.civilstat= "S"
except TypeError:
print ("invalid arguement error")


def getSex(self):
print ("gender is:")
return self.sex


def getLastName(self):
print ("last name is:")
return self.last


def getFirstName(self):
print ("first name is:")
return self.first


def getCivilStatus(self):
print (self.formalName() + " is:")
return self.civilstat


def setStatus(self, stat):
if (((self.civilstat=="M") or (self.civilstat=="D") or (self.civilstat=="S")) and (len(self.civilstat)==1)):
self.civilstat= stat

elif ((not(self.civilstat=="M") or not(self.civilstat=="F")) or not(len(self.civilstat)==1)):
print ("not a valid status")

else:
print ("not a valid status")


def setMarried(self, newLastName):
if (self.sex == "F") and (newLastName == ""):
raise ValueError("Please, what is her new last name? Re-enter her maiden name if she didn't change it.")

elif (self.sex == "F") and (newLastName != ""):
self.maiden= self.last
self.last= newLastName
self.civilstat= "M"

elif (self.sex == "M") and (newLastName == ""):
self.civilstat= "M"

elif (self.sex == "M") and (newLastName != ""):
raise ValueError("Well, that's strange here. Please, leave his last name blank like \" \".")


def setDivorced(self):
if (self.civilstat != "M"):
raise UserWarning("Wait! That person is not married.")
elif (self.civilstat == "M"):
self.civilstat= "D"
self.last= self.maiden

def formalName(self):
if (self.sex== "M"):
self.title= "Mr."

elif (self.sex== "F"):
if (self.civilstat== "M"):
self.title= "Mrs."

else:
self.title= "Ms."

return (self.title + " " + self.first + " " + self.last)


person1 = Person("Tara", "Manderson", "F")
person2 = Person("Christopher", "Murray", "M")
print (person1.getSex())
print (person1.getLastName())
print (person1.getFirstName())
print (person1.getCivilStatus())
print (person1.formalName())

print (person2.getSex())
print (person2.getLastName())
print (person2.getFirstName())
print (person2.getCivilStatus())
print (person2.formalName())

测试人员.py

    import pytest
import Person


person1 = Person("Tara", "Manderson", "F")

@pytest.fixture
def test_getSex():
assert len(person1.getSex) == 1

最佳答案

在测试程序中,我相信你必须要么

  • 在 Person 类前面加上模块名称:Person.Person(....)

  • 将导入更改为“from Person import *”。在这种情况下,所有类都作为“本地”导入

关于python - pytest 错误(pytest 和 TDD 新手),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28794124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com