Hi Gabriel
> Perhaps the best option is to run the tests in another process. Use any of
> the available IPC mechanisms to gather the test results. This has the
> added advantage of isolating the tested code from your GUI testing
> framework; all requested resources are released to the OS; the test
Hi
I'm writing some code that automatically execute some registered unit
test in a way to automate the process. A sample code follows to
illustrate what I'm doing:
class PruebasDePrueba(unittest.TestCase):
def testUnTest(self):
a = 2
b = 1
self.assertEquals(a, b)
def runT