예제 #1
0
    def test_that_unknown_reduction_mode_raises(self):
        # Arrange
        state = StateFunctionsTest._get_state()

        # Act + Assert
        try:
            get_output_workspace_name(state, ISISReductionMode.All)
            did_raise = False
        except RuntimeError:
            did_raise = True
        self.assertTrue(did_raise)
예제 #2
0
 def test_that_creates_correct_workspace_name_for_1D(self):
     # Arrange
     state = StateFunctionsTest._get_state()
     # Act
     output_workspace = get_output_workspace_name(state, ISISReductionMode.LAB)
     # Assert
     self.assertTrue("12345rear_1D12.0_34.0Phi12.0_56.0_t4.57_T12.37" == output_workspace)