mailr7322 - /1.3/test_suite/unit_tests/_specific_fns/_model_free/test_main.py


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

Header


Content

Posted by edward on September 26, 2008 - 11:30:
Author: bugman
Date: Fri Sep 26 11:30:48 2008
New Revision: 7322

URL: http://svn.gna.org/viewcvs/relax?rev=7322&view=rev
Log:
Wrote a unit test for the model-free duplicate_data() method.


Added:
    1.3/test_suite/unit_tests/_specific_fns/_model_free/test_main.py

Added: 1.3/test_suite/unit_tests/_specific_fns/_model_free/test_main.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_specific_fns/_model_free/test_main.py?rev=7322&view=auto
==============================================================================
--- 1.3/test_suite/unit_tests/_specific_fns/_model_free/test_main.py (added)
+++ 1.3/test_suite/unit_tests/_specific_fns/_model_free/test_main.py Fri Sep 
26 11:30:48 2008
@@ -1,0 +1,55 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2008 Edward d'Auvergne                                       
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
+
+# Python module imports.
+from unittest import TestCase
+
+# relax module imports.
+from data import Relax_data_store; ds = Relax_data_store()
+from specific_fns.model_free import main
+
+
+class Test_main(TestCase):
+    """Unit tests for the class methods of 
specific_fns.model_free.main.Model_free_main."""
+
+    # Instantiate the class.
+    inst = main.Model_free_main()
+
+
+    def setUp(self):
+        """Setup some structures for the unit tests."""
+
+        # Create a model-free data pipe.
+        ds.add(pipe_name='orig', pipe_type='mf')
+
+
+    def tearDown(self):
+        """Reset the relax data storage object."""
+
+        ds.__reset__()
+
+
+    def test_duplicate_data(self):
+        """Test the model-free duplicate_data() method."""
+
+        # Duplicate the data.
+        self.inst.duplicate_data('orig', 'new')




Related Messages


Powered by MHonArc, Updated Fri Sep 26 12:00:02 2008