source: trunk/unit_tests.py @ 762

Last change on this file since 762 was 762, checked in by toby, 13 years ago

update py files to use native line ends, add update from svn to help menu when svn or svn.exe is in path or ./svn/bin

  • Property svn:eol-style set to native
File size: 1.0 KB
Line 
1########### SVN repository information ###################
2# $Date$
3# $Author$
4# $Revision$
5# $URL$
6# $Id$
7########### SVN repository information ###################
8import GSASIIspc
9import GSASIIlattice as G2l
10def test_GSASIIspc():
11    GSASIIspc.test0()
12def test_GSASIIspc1():
13    GSASIIspc.test1()
14def test_GSASIIspc2():
15    GSASIIspc.test2()
16def test_GSASIIspc3():
17    GSASIIspc.test3()
18def test_GSASIIlattice0():
19    G2l.test0()
20def test_GSASIIlattice1():
21    G2l.test1()
22def test_GSASIIlattice2():
23    G2l.test2()
24def test_GSASIIlattice3():
25    G2l.test3()
26def test_GSASIIlattice4():
27    G2l.test4()
28def test_GSASIIlattice5():
29    G2l.test5()
30def test_GSASIIlattice6():
31    G2l.test6()
32def test_GSASIIlattice7():
33    G2l.test7()
34def test_GSASIIlattice8():
35    G2l.test8()
36
37if __name__ == '__main__':
38    test_GSASIIspc()
39    test_GSASIIspc1()
40    test_GSASIIspc2()
41    test_GSASIIspc3()
42    G2l.test0()
43    G2l.test1()
44    G2l.test2()
45    G2l.test3()
46    G2l.test4()
47    G2l.test5()
48    G2l.test6()
49    G2l.test7()
50    G2l.test8()
51    print "OK"
Note: See TracBrowser for help on using the repository browser.