mailr2996 - in /1.3/test_suite/unit_tests/data: ./ __init__.py test_diff_tensor.py


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

Header


Content

Posted by edward on January 13, 2007 - 06:52:
Author: bugman
Date: Sat Jan 13 06:51:55 2007
New Revision: 2996

URL: http://svn.gna.org/viewcvs/relax?rev=2996&view=rev
Log:
Added an initial unit test framework for testing of the diffusion tensor 
objects.


Added:
    1.3/test_suite/unit_tests/data/
    1.3/test_suite/unit_tests/data/__init__.py
    1.3/test_suite/unit_tests/data/test_diff_tensor.py

Added: 1.3/test_suite/unit_tests/data/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/data/__init__.py?rev=2996&view=auto
==============================================================================
--- 1.3/test_suite/unit_tests/data/__init__.py (added)
+++ 1.3/test_suite/unit_tests/data/__init__.py Sat Jan 13 06:51:55 2007
@@ -1,0 +1,25 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2007 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  
 #
+#                                                                            
 #
+###############################################################################
+
+
+__all__ = ['test_diff_tensor']
+

Added: 1.3/test_suite/unit_tests/data/test_diff_tensor.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/data/test_diff_tensor.py?rev=2996&view=auto
==============================================================================
--- 1.3/test_suite/unit_tests/data/test_diff_tensor.py (added)
+++ 1.3/test_suite/unit_tests/data/test_diff_tensor.py Sat Jan 13 06:51:55 
2007
@@ -1,0 +1,64 @@
+#!/usr/bin/env python
+
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2007 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  
 #
+#                                                                            
 #
+###############################################################################
+
+from os.path import join, sep
+from string import split
+from sys import path
+from unittest import TestCase, main
+
+# Modify the system path so that the relax modules can be imported.
+path_comps = split(path[0], sep)
+relax_path = sep + join(*path_comps[0:5])
+path.append(relax_path)
+
+from data.diff_tensor import DiffTensorElement
+
+
+# Tests for the data.diff_tensor module.
+class Test_diff_tensor(TestCase):
+    def setUp(self):
+        """Set 'self.diff_data' to an empty instance of the 
DiffTensorElement class."""
+
+        self.diff_data = DiffTensorElement()
+
+
+    def test_set_Diso(self):
+        """Test the setting of the Diso parameter.
+
+        The setting of this parameter is not allowed.
+        """
+
+        # Set Diso to the tm value of 10 ns.
+        self.diff_data.Diso = 1/(6*1e-8)
+
+
+    def test_set_tm(self):
+        """Test the setting of the tm parameter."""
+
+        # Set the tm value to 10 ns.
+        self.diff_data.tm = 1e-8
+
+
+if __name__ == '__main__':
+    main()




Related Messages


Powered by MHonArc, Updated Sat Jan 13 07:20:05 2007