mailr15272 - /branches/frame_order_testing/test_suite/system_tests/frame_order.py


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

Header


Content

Posted by edward on January 27, 2012 - 11:10:
Author: bugman
Date: Fri Jan 27 11:10:33 2012
New Revision: 15272

URL: http://svn.gna.org/viewcvs/relax?rev=15272&view=rev
Log:
Triplicated the rest of the frame order system tests for running with no RDC 
or PCS data.


Modified:
    branches/frame_order_testing/test_suite/system_tests/frame_order.py

Modified: branches/frame_order_testing/test_suite/system_tests/frame_order.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_testing/test_suite/system_tests/frame_order.py?rev=15272&r1=15271&r2=15272&view=diff
==============================================================================
--- branches/frame_order_testing/test_suite/system_tests/frame_order.py 
(original)
+++ branches/frame_order_testing/test_suite/system_tests/frame_order.py Fri 
Jan 27 11:10:33 2012
@@ -253,6 +253,24 @@
         self.check_chi2(0.0)
 
 
+    def test_cam_iso_cone_free_rotor_no_rdc(self):
+        """Test the isotropic cone, free rotor frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(rdc=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'iso_cone_free_rotor.py')
+        self.check_chi2(0.0)
+
+
+    def test_cam_iso_cone_free_rotor_no_pcs(self):
+        """Test the isotropic cone, free rotor frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(pcs=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'iso_cone_free_rotor.py')
+        self.check_chi2(0.0)
+
+
     def test_cam_iso_cone_free_rotor2(self):
         """Test the second isotropic cone, free rotor frame order model of 
CaM."""
 
@@ -262,6 +280,24 @@
         self.check_chi2(0.0)
 
 
+    def test_cam_iso_cone_free_rotor2_no_rdc(self):
+        """Test the second isotropic cone, free rotor frame order model of 
CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(rdc=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'iso_cone_free_rotor2.py')
+        self.check_chi2(0.0)
+
+
+    def test_cam_iso_cone_free_rotor2_no_pcs(self):
+        """Test the second isotropic cone, free rotor frame order model of 
CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(pcs=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'iso_cone_free_rotor2.py')
+        self.check_chi2(0.0)
+
+
     def test_cam_rigid(self):
         """Test the rigid frame order model of CaM."""
 
@@ -271,6 +307,24 @@
         self.check_chi2(0.0)
 
 
+    def test_cam_rigid_no_rdc(self):
+        """Test the rigid frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(rdc=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'rigid.py')
+        self.check_chi2(0.0)
+
+
+    def test_cam_rigid_no_pcs(self):
+        """Test the rigid frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(pcs=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'rigid.py')
+        self.check_chi2(0.0)
+
+
     def test_cam_rotor(self):
         """Test the rotor frame order model of CaM."""
 
@@ -280,11 +334,47 @@
         self.check_chi2(0.0)
 
 
+    def test_cam_rotor_no_rdc(self):
+        """Test the rotor frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(rdc=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'rotor.py')
+        self.check_chi2(0.0)
+
+
+    def test_cam_rotor_no_pcs(self):
+        """Test the rotor frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(pcs=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'rotor.py')
+        self.check_chi2(0.0)
+
+
     def test_cam_rotor2(self):
         """Test the second rotor frame order model of CaM."""
 
         # The flags, execute the script, and then check the chi2 value.
         self.flags()
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'rotor2.py')
+        self.check_chi2(0.0)
+
+
+    def test_cam_rotor2_no_rdc(self):
+        """Test the second rotor frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(rdc=False)
+        self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'rotor2.py')
+        self.check_chi2(0.0)
+
+
+    def test_cam_rotor2_no_pcs(self):
+        """Test the second rotor frame order model of CaM."""
+
+        # The flags, execute the script, and then check the chi2 value.
+        self.flags(pcs=False)
         self.interpreter.run(script_file=status.install_path + 
sep+'test_suite'+sep+'system_tests'+sep+'scripts'+sep+'frame_order'+sep+'cam'+sep+'rotor2.py')
         self.check_chi2(0.0)
 




Related Messages


Powered by MHonArc, Updated Fri Jan 27 11:20:01 2012