Commit 12f58446 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Remove support of direct test launch.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31795 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7f1e01a9
...@@ -41,11 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -41,11 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingAccountingCancellation(TestERP5BankingMixin): class TestERP5BankingAccountingCancellation(TestERP5BankingMixin):
""" """
Inside this test we will check that it is possible to cancel a transaction. Inside this test we will check that it is possible to cancel a transaction.
...@@ -248,12 +243,3 @@ class TestERP5BankingAccountingCancellation(TestERP5BankingMixin): ...@@ -248,12 +243,3 @@ class TestERP5BankingAccountingCancellation(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingAccountingCancellation))
return suite
...@@ -45,11 +45,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -45,11 +45,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingAvailableInventory(TestERP5BankingCheckPaymentMixin, class TestERP5BankingAvailableInventory(TestERP5BankingCheckPaymentMixin,
TestERP5BankingMoneyDepositMixin): TestERP5BankingMoneyDepositMixin):
""" """
...@@ -329,12 +324,3 @@ class TestERP5BankingAvailableInventory(TestERP5BankingCheckPaymentMixin, ...@@ -329,12 +324,3 @@ class TestERP5BankingAvailableInventory(TestERP5BankingCheckPaymentMixin,
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingAvailableInventory))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingInventory(TestERP5BankingMixin): class TestERP5BankingInventory(TestERP5BankingMixin):
""" """
...@@ -196,12 +191,3 @@ class TestERP5BankingInventory(TestERP5BankingMixin): ...@@ -196,12 +191,3 @@ class TestERP5BankingInventory(TestERP5BankingMixin):
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingInventory))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashBalanceRegulation(TestERP5BankingMixin): class TestERP5BankingCashBalanceRegulation(TestERP5BankingMixin):
""" """
...@@ -803,12 +798,3 @@ class TestERP5BankingCashBalanceRegulation(TestERP5BankingMixin): ...@@ -803,12 +798,3 @@ class TestERP5BankingCashBalanceRegulation(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashBalanceRegulation))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashClassification(TestERP5BankingMixin): class TestERP5BankingCashClassification(TestERP5BankingMixin):
...@@ -728,12 +723,3 @@ class TestERP5BankingCashClassification(TestERP5BankingMixin): ...@@ -728,12 +723,3 @@ class TestERP5BankingCashClassification(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashClassification))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashExchange(TestERP5BankingMixin): class TestERP5BankingCashExchange(TestERP5BankingMixin):
""" """
...@@ -523,12 +518,3 @@ class TestERP5BankingCashExchange(TestERP5BankingMixin): ...@@ -523,12 +518,3 @@ class TestERP5BankingCashExchange(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashExchange))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingInventory(TestERP5BankingMixin): class TestERP5BankingInventory(TestERP5BankingMixin):
""" """
...@@ -427,12 +422,3 @@ class TestERP5BankingInventory(TestERP5BankingMixin): ...@@ -427,12 +422,3 @@ class TestERP5BankingInventory(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingInventory))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashMovement(TestERP5BankingMixin): class TestERP5BankingCashMovement(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Cash Movement This class is a unit test to check the module of Cash Movement
...@@ -676,12 +671,3 @@ class TestERP5BankingCashMovement(TestERP5BankingMixin): ...@@ -676,12 +671,3 @@ class TestERP5BankingCashMovement(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashMovement))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashMovementNewNotEmitted(TestERP5BankingMonetaryReceptionMixin): class TestERP5BankingCashMovementNewNotEmitted(TestERP5BankingMonetaryReceptionMixin):
""" """
This class is a unit test to check the module of Cash Movement New Not Emitted This class is a unit test to check the module of Cash Movement New Not Emitted
...@@ -358,12 +353,3 @@ class TestERP5BankingCashMovementNewNotEmitted(TestERP5BankingMonetaryReceptionM ...@@ -358,12 +353,3 @@ class TestERP5BankingCashMovementNewNotEmitted(TestERP5BankingMonetaryReceptionM
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashMovementNewNotEmitted))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashSorting(TestERP5BankingMixin): class TestERP5BankingCashSorting(TestERP5BankingMixin):
...@@ -567,12 +562,3 @@ class TestERP5BankingCashSorting(TestERP5BankingMixin): ...@@ -567,12 +562,3 @@ class TestERP5BankingCashSorting(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashSorting))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashToCurrencyPurchase(TestERP5BankingMixin): class TestERP5BankingCashToCurrencyPurchase(TestERP5BankingMixin):
""" """
...@@ -470,12 +465,3 @@ class TestERP5BankingCashToCurrencyPurchase(TestERP5BankingMixin): ...@@ -470,12 +465,3 @@ class TestERP5BankingCashToCurrencyPurchase(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashToCurrencyPurchase))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCashToCurrencySale(TestERP5BankingMixin): class TestERP5BankingCashToCurrencySale(TestERP5BankingMixin):
""" """
...@@ -434,12 +429,3 @@ class TestERP5BankingCashToCurrencySale(TestERP5BankingMixin): ...@@ -434,12 +429,3 @@ class TestERP5BankingCashToCurrencySale(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCashToCurrencySale))
return suite
...@@ -42,11 +42,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -42,11 +42,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCheckDeposit(TestERP5BankingMixin): class TestERP5BankingCheckDeposit(TestERP5BankingMixin):
""" """
Unit test class for the check deposit module Unit test class for the check deposit module
...@@ -536,12 +531,3 @@ class TestERP5BankingCheckDeposit(TestERP5BankingMixin): ...@@ -536,12 +531,3 @@ class TestERP5BankingCheckDeposit(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCheckDeposit))
return suite
...@@ -41,11 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -41,11 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCheckPaymentMixin(TestERP5BankingMixin): class TestERP5BankingCheckPaymentMixin(TestERP5BankingMixin):
""" """
Unit test class for the check payment module Unit test class for the check payment module
...@@ -590,12 +585,3 @@ class TestERP5BankingCheckPayment(TestERP5BankingCheckPaymentMixin): ...@@ -590,12 +585,3 @@ class TestERP5BankingCheckPayment(TestERP5BankingCheckPaymentMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCheckPayment))
return suite
...@@ -42,10 +42,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -42,10 +42,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCheckbookDeliveryMixin(TestERP5BankingMixin): class TestERP5BankingCheckbookDeliveryMixin(TestERP5BankingMixin):
def createCheckbookDelivery(self, sequence=None, sequence_list=None, **kwd): def createCheckbookDelivery(self, sequence=None, sequence_list=None, **kwd):
...@@ -300,12 +296,3 @@ class TestERP5BankingCheckbookDelivery(TestERP5BankingCheckbookDeliveryMixin, ...@@ -300,12 +296,3 @@ class TestERP5BankingCheckbookDelivery(TestERP5BankingCheckbookDeliveryMixin,
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCheckbookDelivery))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCheckbookMovement(TestERP5BankingCheckbookVaultTransferMixin): class TestERP5BankingCheckbookMovement(TestERP5BankingCheckbookVaultTransferMixin):
""" """
This class is a unit test to check the module of Cash Transfer This class is a unit test to check the module of Cash Transfer
...@@ -335,12 +330,3 @@ class TestERP5BankingCheckbookMovement(TestERP5BankingCheckbookVaultTransferMixi ...@@ -335,12 +330,3 @@ class TestERP5BankingCheckbookMovement(TestERP5BankingCheckbookVaultTransferMixi
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCheckbookMovement))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCheckbookReception(TestERP5BankingMixin): class TestERP5BankingCheckbookReception(TestERP5BankingMixin):
""" """
...@@ -503,12 +498,3 @@ class TestERP5BankingCheckbookReception(TestERP5BankingMixin): ...@@ -503,12 +498,3 @@ class TestERP5BankingCheckbookReception(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCheckbookReception))
return suite
...@@ -41,10 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -41,10 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCheckbookUsualCashTransferMixin( class TestERP5BankingCheckbookUsualCashTransferMixin(
TestERP5BankingCheckbookVaultTransferMixin): TestERP5BankingCheckbookVaultTransferMixin):
...@@ -394,12 +390,3 @@ class TestERP5BankingCheckbookUsualCashTransfer(TestERP5BankingCheckbookUsualCas ...@@ -394,12 +390,3 @@ class TestERP5BankingCheckbookUsualCashTransfer(TestERP5BankingCheckbookUsualCas
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCheckbookUsualCashTransfer))
return suite
...@@ -38,10 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,10 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCheckbookVaultTransferMixin(TestERP5BankingMixin): class TestERP5BankingCheckbookVaultTransferMixin(TestERP5BankingMixin):
def createCheckbookReception(self, sequence=None, sequence_list=None, **kwd): def createCheckbookReception(self, sequence=None, sequence_list=None, **kwd):
...@@ -391,12 +387,3 @@ class TestERP5BankingCheckbookVaultTransfer(TestERP5BankingCheckbookVaultTransfe ...@@ -391,12 +387,3 @@ class TestERP5BankingCheckbookVaultTransfer(TestERP5BankingCheckbookVaultTransfe
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCheckbookVaultTransfer))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingClassificationSurvey(TestERP5BankingMixin): class TestERP5BankingClassificationSurvey(TestERP5BankingMixin):
...@@ -534,12 +529,3 @@ class TestERP5BankingClassificationSurvey(TestERP5BankingMixin): ...@@ -534,12 +529,3 @@ class TestERP5BankingClassificationSurvey(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingClassificationSurvey))
return suite
...@@ -43,10 +43,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -43,10 +43,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCounterDate(TestERP5BankingMixin): class TestERP5BankingCounterDate(TestERP5BankingMixin):
RUN_ALL_TEST = 1 # we want to run all test RUN_ALL_TEST = 1 # we want to run all test
QUIET = 0 # we don't want the test to be quiet QUIET = 0 # we don't want the test to be quiet
...@@ -227,13 +223,3 @@ class TestERP5BankingCounterDate(TestERP5BankingMixin): ...@@ -227,13 +223,3 @@ class TestERP5BankingCounterDate(TestERP5BankingMixin):
self.counter_date_2, 'open_action', self.counter_date_2, 'open_action',
wf_id='counter_date_workflow') wf_id='counter_date_workflow')
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCounterDate))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingCounterRendering(TestERP5BankingMixin): class TestERP5BankingCounterRendering(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Counter Rendering This class is a unit test to check the module of Counter Rendering
...@@ -524,12 +519,3 @@ class TestERP5BankingCounterRendering(TestERP5BankingMixin): ...@@ -524,12 +519,3 @@ class TestERP5BankingCounterRendering(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingCounterRendering))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingDestructionSurvey(TestERP5BankingMixin): class TestERP5BankingDestructionSurvey(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Destruction Survey This class is a unit test to check the module of Destruction Survey
...@@ -456,12 +451,3 @@ class TestERP5BankingDestructionSurvey(TestERP5BankingMixin): ...@@ -456,12 +451,3 @@ class TestERP5BankingDestructionSurvey(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingDestructionSurvey))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingForeignCashReception(TestERP5BankingMixin): class TestERP5BankingForeignCashReception(TestERP5BankingMixin):
""" """
...@@ -379,12 +374,3 @@ class TestERP5BankingForeignCashReception(TestERP5BankingMixin): ...@@ -379,12 +374,3 @@ class TestERP5BankingForeignCashReception(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingForeignCashReception))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingInternalMoneyDeposit(TestERP5BankingMixin): class TestERP5BankingInternalMoneyDeposit(TestERP5BankingMixin):
...@@ -279,12 +274,3 @@ class TestERP5BankingInternalMoneyDeposit(TestERP5BankingMixin): ...@@ -279,12 +274,3 @@ class TestERP5BankingInternalMoneyDeposit(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingInternalMoneyDeposit))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingInternalMoneyPayment(TestERP5BankingMixin): class TestERP5BankingInternalMoneyPayment(TestERP5BankingMixin):
...@@ -281,12 +276,3 @@ class TestERP5BankingInternalMoneyPayment(TestERP5BankingMixin): ...@@ -281,12 +276,3 @@ class TestERP5BankingInternalMoneyPayment(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingInternalMoneyPayment))
return suite
...@@ -41,11 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -41,11 +41,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMonetaryDestruction(TestERP5BankingMixin): class TestERP5BankingMonetaryDestruction(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Monetary Destruction This class is a unit test to check the module of Monetary Destruction
...@@ -1090,12 +1085,3 @@ class TestERP5BankingMonetaryDestruction(TestERP5BankingMixin): ...@@ -1090,12 +1085,3 @@ class TestERP5BankingMonetaryDestruction(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMonetaryDestruction))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMonetaryReceptionMixin(TestERP5BankingMixin): class TestERP5BankingMonetaryReceptionMixin(TestERP5BankingMixin):
def stepCreateMonetaryReception(self, sequence=None, sequence_list=None, **kw): def stepCreateMonetaryReception(self, sequence=None, sequence_list=None, **kw):
...@@ -469,12 +464,3 @@ class TestERP5BankingMonetaryIssue(TestERP5BankingMonetaryReceptionMixin): ...@@ -469,12 +464,3 @@ class TestERP5BankingMonetaryIssue(TestERP5BankingMonetaryReceptionMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMonetaryIssue))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMonetaryRecall(TestERP5BankingMixin): class TestERP5BankingMonetaryRecall(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Monetary Recall This class is a unit test to check the module of Monetary Recall
...@@ -587,12 +582,3 @@ class TestERP5BankingMonetaryRecall(TestERP5BankingMixin): ...@@ -587,12 +582,3 @@ class TestERP5BankingMonetaryRecall(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMonetaryRecall))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMonetaryReception(TestERP5BankingMixin): class TestERP5BankingMonetaryReception(TestERP5BankingMixin):
""" """
...@@ -380,12 +375,3 @@ class TestERP5BankingMonetaryReception(TestERP5BankingMixin): ...@@ -380,12 +375,3 @@ class TestERP5BankingMonetaryReception(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMonetaryReception))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMonetarySurvey(TestERP5BankingMixin): class TestERP5BankingMonetarySurvey(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Monetary Survey This class is a unit test to check the module of Monetary Survey
...@@ -485,12 +480,3 @@ class TestERP5BankingMonetarySurvey(TestERP5BankingMixin): ...@@ -485,12 +480,3 @@ class TestERP5BankingMonetarySurvey(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMonetarySurvey))
return suite
...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -38,11 +38,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMoneyDepositMixin(TestERP5BankingMixin): class TestERP5BankingMoneyDepositMixin(TestERP5BankingMixin):
...@@ -340,12 +335,3 @@ class TestERP5BankingMoneyDeposit(TestERP5BankingMoneyDepositMixin): ...@@ -340,12 +335,3 @@ class TestERP5BankingMoneyDeposit(TestERP5BankingMoneyDepositMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMoneyDeposit))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMoneyDepositRendering(TestERP5BankingMixin): class TestERP5BankingMoneyDepositRendering(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Money Deposit Rendering This class is a unit test to check the module of Money Deposit Rendering
...@@ -524,12 +519,3 @@ class TestERP5BankingMoneyDepositRendering(TestERP5BankingMixin): ...@@ -524,12 +519,3 @@ class TestERP5BankingMoneyDepositRendering(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMoneyDepositRendering))
return suite
...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -39,11 +39,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingMutilatedBanknote(TestERP5BankingMixin): class TestERP5BankingMutilatedBanknote(TestERP5BankingMixin):
""" """
""" """
...@@ -925,12 +920,3 @@ class TestERP5BankingMutilatedBanknote(TestERP5BankingMixin): ...@@ -925,12 +920,3 @@ class TestERP5BankingMutilatedBanknote(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingMutilatedBanknote))
return suite
...@@ -45,10 +45,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -45,10 +45,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingStopPayment( TestERP5BankingCheckbookDeliveryMixin, class TestERP5BankingStopPayment( TestERP5BankingCheckbookDeliveryMixin,
TestERP5BankingCheckbookUsualCashTransferMixin, TestERP5BankingCheckbookUsualCashTransferMixin,
TestERP5BankingCheckbookVaultTransferMixin): TestERP5BankingCheckbookVaultTransferMixin):
...@@ -347,12 +343,3 @@ class TestERP5BankingStopPayment( TestERP5BankingCheckbookDeliveryMixin, ...@@ -347,12 +343,3 @@ class TestERP5BankingStopPayment( TestERP5BankingCheckbookDeliveryMixin,
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingStopPayment))
return suite
...@@ -43,10 +43,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -43,10 +43,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingTravelerCheckPurchase(TestERP5BankingCheckbookUsualCashTransferMixin, class TestERP5BankingTravelerCheckPurchase(TestERP5BankingCheckbookUsualCashTransferMixin,
TestERP5BankingTravelerCheckSaleMixin): TestERP5BankingTravelerCheckSaleMixin):
""" """
...@@ -232,12 +228,3 @@ class TestERP5BankingTravelerCheckPurchase(TestERP5BankingCheckbookUsualCashTran ...@@ -232,12 +228,3 @@ class TestERP5BankingTravelerCheckPurchase(TestERP5BankingCheckbookUsualCashTran
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingTravelerCheckPurchase))
return suite
...@@ -42,10 +42,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -42,10 +42,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingTravelerCheckSaleMixin(TestERP5BankingMixin): class TestERP5BankingTravelerCheckSaleMixin(TestERP5BankingMixin):
def getTravelerCheckSaleModule(self): def getTravelerCheckSaleModule(self):
...@@ -311,12 +307,3 @@ class TestERP5BankingTravelerCheckSale(TestERP5BankingCheckbookUsualCashTransfer ...@@ -311,12 +307,3 @@ class TestERP5BankingTravelerCheckSale(TestERP5BankingCheckbookUsualCashTransfer
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingTravelerCheckSale))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingUsualCashRendering(TestERP5BankingMixin): class TestERP5BankingUsualCashRendering(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Usual Cash Rendering This class is a unit test to check the module of Usual Cash Rendering
...@@ -589,12 +584,4 @@ class TestERP5BankingUsualCashRendering(TestERP5BankingMixin): ...@@ -589,12 +584,4 @@ class TestERP5BankingUsualCashRendering(TestERP5BankingMixin):
sequence_list.addSequenceString(sequence_string) sequence_list.addSequenceString(sequence_string)
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingUsualCashRendering))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingUsualCashTransfer(TestERP5BankingMixin): class TestERP5BankingUsualCashTransfer(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Usual Cash Transfer This class is a unit test to check the module of Usual Cash Transfer
...@@ -524,12 +519,3 @@ class TestERP5BankingUsualCashTransfer(TestERP5BankingMixin): ...@@ -524,12 +519,3 @@ class TestERP5BankingUsualCashTransfer(TestERP5BankingMixin):
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingUsualCashTransfer))
return suite
...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log') ...@@ -40,11 +40,6 @@ os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all # Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300' os.environ['EVENT_LOG_SEVERITY'] = '-300'
# Define how to launch the script if we don't use runUnitTest script
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
class TestERP5BankingVaultTransfer(TestERP5BankingMixin): class TestERP5BankingVaultTransfer(TestERP5BankingMixin):
""" """
This class is a unit test to check the module of Vault Transfer This class is a unit test to check the module of Vault Transfer
...@@ -799,12 +794,3 @@ class TestERP5BankingVaultTransfer(TestERP5BankingMixin): ...@@ -799,12 +794,3 @@ class TestERP5BankingVaultTransfer(TestERP5BankingMixin):
sequence_list.addSequenceString(another_sequence_string) sequence_list.addSequenceString(another_sequence_string)
# play the sequence # play the sequence
sequence_list.play(self) sequence_list.play(self)
# define how we launch the unit test
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestERP5BankingVaultTransfer))
return suite
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment