简体   繁体   中英

Python to write function that check dependencies on other functions

Would like to ask for some advice/ available libraries that can be use to check dependencies between functions. Function test_isupper() will need to check if test_upper()function is successfully run. Else, not going to run test_isupper()

import unittest

class TestStringMethods(unittest.TestCase):

    def test_upper(self):
        self.assertEqual('foo'.upper(), 'FOO')

    def test_isupper(self):
        self.assertTrue('FOO'.isupper())
        self.assertFalse('Foo'.isupper())

[repeated]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM