En Tue, 06 Oct 2009 18:01:34 -0300, Joel Smith
escribió:
Gabriel Genellina wrote:
Note that you don't *have* to use partial in this case, as you're
building the suite yourself. Just create the TestCase instances
manually:
suite = unittest.TestSuite([
TestGenericWindow('testit',
Gabriel Genellina wrote:
Note that you don't *have* to use partial in this case, as you're
building the suite yourself. Just create the TestCase instances manually:
suite = unittest.TestSuite([
TestGenericWindow('testit', 'brown'),
TestGenericWindow('testit', 'blue'),
Test