我是单元测试的新手。我想知道您将如何使用 python 单元测试对下面的代码进行单元测试。您可以使用任何类型的框架进行测试,但请务必说明原因并详细说明。真的很感谢大家的帮助。
顺便说一句,只要它现在正在做的事情,您就可以对代码进行更改。无论如何都是BS:P
pyg = 'ay'
original = raw_input('Enter a word:')
word = original.lower()
first = word[0]
if first == "a" and "e" and "i" and "o" and "u":
new_word = word + pyg
print new_word
else:
consonant_fix = word[1:]
new_word = consonant_fix + word[0] + pyg
print new_word