~mwinter4/maus/ckov-update

« back to all changes in this revision

Viewing changes to tests/cpp_unit/Optics/CovarianceMatrixTest.cc

  • Committer: Chris Rogers
  • Date: 2012-11-23 11:19:42 UTC
  • mfrom: (659.1.50 release-candidate)
  • Revision ID: chris.rogers@stfc.ac.uk-20121123111942-5wi23zn7zx396q2d
Tags: MAUS-v0.4.1
MAUS-v0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
 
252
252
TEST_F(CovarianceMatrixTest, DefaultConstructor) {
253
253
  const CovarianceMatrix zeros;
254
 
  double total(0.);
 
254
  double total = 0.0;
255
255
  ASSERT_EQ(zeros.size(), static_cast<size_t>(6));
256
256
 
257
257
  for (size_t row = 1; row <= 6; ++row) {