Package mvpa :: Package tests :: Module test_hyperalignment
[hide private]
[frames] | no frames]

Source Code for Module mvpa.tests.test_hyperalignment

 1  # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  # vi: set ft=python sts=4 ts=4 sw=4 et: 
 3  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 4  # 
 5  #   See COPYING file distributed along with the PyMVPA package for the 
 6  #   copyright and license terms. 
 7  # 
 8  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 9  """Unit tests for PyMVPA ...""" 
10   
11  # See other tests and test_procrust.py for some example on what to do ;) 
12   
13  from mvpa.algorithms.hyperalignment import Hyperalignment 
14   
15  # Somewhat slow but provides all needed ;) 
16  from tests_warehouse import * 
17   
18  # if you need some classifiers 
19  #from tests_warehouse_clfs import * 
20   
21 -class HyperAlignmentTests(unittest.TestCase):
22 23
24 - def testBasicFunctioning(self):
25 # TODO 26 pass
27
28 - def testPossibleInputs(self):
29 # get a dataset with a very high SNR 30 pass
31 32 33
34 -def suite():
35 return unittest.makeSuite(HyperAlignmentTests)
36 37 38 if __name__ == '__main__': 39 import runner 40