我有这样的方法示例:
Random text here { Name = "Important - info 1110100", UniqueId = "1110100", More random text};
Random text here { Name = "More Important (info) 1110101", UniqueId = "1110101", More random text};
Random text here { Name = "Other Important info 1110102", UniqueId = "1110102", More random text};
.
.
.
Random text here { Name = "Other Important info 4/11 2000110", UniqueId = "2000110", More random text};
或第二个示例:
class Class(OtherClass):
def __init__(self, x):
self.x = x
我不知道如何编写单元测试来验证它。 我只有经典功能的经验,例如:
class Class():
def __init__(self, x):
self.x = x
非常感谢您的帮助。
答案 0 :(得分:1)
您刚刚用一个方法编写了一个类定义,该方法在实例化该类时调用。因此,单元测试可能是您是否可以实例化对象并检查其属性是否正确。
testx = 'something'
assert Class(testx).x == testx