Package test_suite :: Package unit_tests :: Package _prompt :: Module test_relax_fit
[hide private]
[frames] | no frames]

Source Code for Module test_suite.unit_tests._prompt.test_relax_fit

 1  ############################################################################### 
 2  #                                                                             # 
 3  # Copyright (C) 2008, 2010 Edward d'Auvergne                                  # 
 4  #                                                                             # 
 5  # This file is part of the program relax.                                     # 
 6  #                                                                             # 
 7  # relax is free software; you can redistribute it and/or modify               # 
 8  # it under the terms of the GNU General Public License as published by        # 
 9  # the Free Software Foundation; either version 2 of the License, or           # 
10  # (at your option) any later version.                                         # 
11  #                                                                             # 
12  # relax is distributed in the hope that it will be useful,                    # 
13  # but WITHOUT ANY WARRANTY; without even the implied warranty of              # 
14  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               # 
15  # GNU General Public License for more details.                                # 
16  #                                                                             # 
17  # You should have received a copy of the GNU General Public License           # 
18  # along with relax; if not, write to the Free Software                        # 
19  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA   # 
20  #                                                                             # 
21  ############################################################################### 
22   
23  # Python module imports. 
24  from unittest import TestCase 
25   
26  # relax module imports. 
27  from prompt.relax_fit import Relax_fit 
28  from relax_errors import RelaxNumError, RelaxStrError 
29   
30  # Unit test imports. 
31  from data_types import DATA_TYPES 
32   
33   
34 -class Test_relax_fit(TestCase):
35 """Unit tests for the functions of the 'prompt.relax_fit' module.""" 36 37 # Instantiate the user function class. 38 relax_fit_fns = Relax_fit() 39 40
42 """The time arg test of the relax_fit.relax_time() user function.""" 43 44 # Loop over the data types. 45 for data in DATA_TYPES: 46 # Catch the float, bin, and int arguments, and skip them. 47 if data[0] == 'float' or data[0] == 'bin' or data[0] == 'int': 48 continue 49 50 # The argument test. 51 self.assertRaises(RelaxNumError, self.relax_fit_fns.relax_time, time=data[1])
52 53
55 """The spectrum_id arg test of the relax_fit.relax_time() user function.""" 56 57 # Loop over the data types. 58 for data in DATA_TYPES: 59 # Catch the str arguments, and skip them. 60 if data[0] == 'str': 61 continue 62 63 # The argument test. 64 self.assertRaises(RelaxStrError, self.relax_fit_fns.relax_time, spectrum_id=data[1])
65 66
68 """The model arg test of the relax_fit.select_model() user function.""" 69 70 # Loop over the data types. 71 for data in DATA_TYPES: 72 # Catch the str arguments, and skip them. 73 if data[0] == 'str': 74 continue 75 76 # The argument test. 77 self.assertRaises(RelaxStrError, self.relax_fit_fns.select_model, model=data[1])
78