我有一个我希望是一个非常普遍的问题。我正在测试 XML 文件并验证特定标签。我不想为每个字段重新编写代码,所以我试图重用标签检查代码。但是,当我尝试这样做时
这是我尝试在其中使用 UnitTest 框架的“ValidateField”类。这是我尝试使用的代码。我只是想这样称呼它。我得到的是单元测试框架运行了 0 个测试。我在程序的其他地方成功地使用了单元测试框架,我不想重用一个类。有人现在我会误入歧途吗?
这是我得到的输出:
----------------------------------------------------------------------
Ran 0 tests in 0.000s
OK
----------------------------------------------------------------------
这是我正在调用可重用类的类/方法
import Common.ValidateField
class Tests():
def test_testCreated(self):
validate = Common.ValidateField.ValidateField()
validate.test_field('./created')
这是使用单元测试框架的可重用类。
import unittest
import Main
import Common.Logger
class ValidateField(unittest.TestCase):
def test_field(self, xpath):
driver = Main.ValidateDriver().driver
logger = Common.Logger.Logger
tag = []
for t in driver.findall("'" + xpath + "'"):
tag.append(t)
# Test to see if there is more than one tag.
if len(tag) > 1:
self.assertTrue(False, logger.failed("There is more than one " + "'" + t.text + "'" + " tag."))
else:
# Test for a missing tag.
if len(tag) <= 0:
self.assertTrue(False, logger.failed("There is no " + "'" + t.text + "'" + " tag."))
# Found the correct number of tags.
self.assertTrue(True, logger.passed("There is only one " + "'" + t.text + "'" + " tag."))
# Test to make sure there is actually something in the tag.
if t.text is None:
self.assertTrue(False, logger.failed("There is a " + "'" + t.text + "'" + " tag, but no value exists"))