How to get Python Unit Tests to run inside of the Unreal Editor?

it seems that unittest.main() cannot load the TestCase in ue py, i write loader & runner explicit, it works well.

if __name__ == '__main__':
    suite = unittest.TestLoader().loadTestsFromTestCase(myTest)
    result = unittest.TextTestRunner(stream=sys.stdout, buffer=True).run(suite)