mailr6614 - /1.3/test_suite/system_tests/nmrview.py


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

Header


Content

Posted by edward on July 03, 2008 - 20:55:
Author: bugman
Date: Thu Jul  3 20:47:48 2008
New Revision: 6614

URL: http://svn.gna.org/viewcvs/relax?rev=6614&view=rev
Log:
Added the framework for system tests for supporting NMRView within relax.


Added:
    1.3/test_suite/system_tests/nmrview.py

Added: 1.3/test_suite/system_tests/nmrview.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/system_tests/nmrview.py?rev=6614&view=auto
==============================================================================
--- 1.3/test_suite/system_tests/nmrview.py (added)
+++ 1.3/test_suite/system_tests/nmrview.py Thu Jul  3 20:47:48 2008
@@ -1,0 +1,43 @@
+###############################################################################
+#                                                                            
 #
+# 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()
+
+
+class NMRView(TestCase):
+    """TestCase class for the functional tests for the support of NMRView in 
relax."""
+
+    def setUp(self):
+        """Set up for all the functional tests."""
+
+        # Create a data pipe.
+        self.relax.interpreter._Pipe.create('mf', 'mf')
+
+
+    def tearDown(self):
+        """Reset the relax data storage object."""
+
+        ds.__reset__()




Related Messages


Powered by MHonArc, Updated Thu Jul 03 21:20:07 2008