~chris-rogers/maus/emr_mc_digitization

« back to all changes in this revision

Viewing changes to tests/cpp_unit/Recon/Kalman/KalmanStateTest.cc

  • Committer: Chris Rogers
  • Date: 2014-04-16 11:48:45 UTC
  • mfrom: (707 merge)
  • mto: This revision was merged to the branch mainline in revision 711.
  • Revision ID: chris.rogers@stfc.ac.uk-20140416114845-h3u3q7pdcxkxvovs
Update to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
 
156
156
  // Bad requests
157
157
  EXPECT_THROW(a_site.set_chi2(0., MAUS::KalmanState::Initialized),
158
 
               Squeal);
 
158
               MAUS::Exception);
159
159
  EXPECT_THROW(a_site.set_covariance_residual(covariance_residual, MAUS::KalmanState::Initialized),
160
 
               Squeal);
 
160
               MAUS::Exception);
161
161
  EXPECT_THROW(a_site.set_residual(smoothed_residual, MAUS::KalmanState::Initialized),
162
 
               Squeal);
 
162
               MAUS::Exception);
163
163
  EXPECT_THROW(a_site.set_covariance_matrix(covariance_residual, MAUS::KalmanState::Initialized),
164
 
               Squeal);
 
164
               MAUS::Exception);
165
165
}
166
166
}