mailr10795 - /1.3/test_suite/test_suite_runner.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on February 22, 2010 - 10:14:
Author: bugman
Date: Mon Feb 22 10:14:15 2010
New Revision: 10795

URL: http://svn.gna.org/viewcvs/relax?rev=10795&view=rev
Log:
Test_suite_runner now has an __init__() method and stores the list of tests.


Modified:
    1.3/test_suite/test_suite_runner.py

Modified: 1.3/test_suite/test_suite_runner.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/test_suite_runner.py?rev=10795&r1=10794&r2=10795&view=diff
==============================================================================
--- 1.3/test_suite/test_suite_runner.py (original)
+++ 1.3/test_suite/test_suite_runner.py Mon Feb 22 10:14:15 2010
@@ -42,6 +42,20 @@
         - System/functional tests.
         - Unit tests.
     """
+
+    def __init__(self, tests):
+        """Store the list of tests to preform.
+
+        The test list should be something like ['
+
+
+        @param tests:   The list of tests to preform.
+        @type tests:    list of str
+        """
+
+        # Store the args.
+        self.tests = tests
+
 
     def run_all_tests(self):
         """Execute all of the test suite test types."""




Related Messages


Powered by MHonArc, Updated Mon Feb 22 10:40:02 2010