~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to tests/cpp_unit/DataStructure/ImageTest.cc

  • Committer: Adam Dobbs
  • Date: 2016-09-14 16:28:53 UTC
  • mfrom: (659.2.49 release-candidate)
  • Revision ID: phuccj@gmail.com-20160914162853-6cyg9n8322bsl9jh
Tags: MAUS-v2.6, MAUS-v2.6.0
MAUS-v2.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
    CanvasWrapper cwrap_values;
157
157
    TCanvas* canv = new TCanvas("name", "title");
158
158
    cwrap_values.SetCanvas(canv);
159
 
    EXPECT_THROW(cwrap_def.EmbedCanvas(&embed), MAUS::Exception);
160
 
    EXPECT_THROW(cwrap_values.EmbedCanvas(NULL), MAUS::Exception);
 
159
    EXPECT_THROW(cwrap_def.EmbedCanvas(&embed), MAUS::Exceptions::Exception);
 
160
    EXPECT_THROW(cwrap_values.EmbedCanvas(NULL), MAUS::Exceptions::Exception);
161
161
    cwrap_values.EmbedCanvas(&embed);
162
162
    EXPECT_EQ(embed.GetCanvas(), canv);
163
163
    gROOT->SetBatch(batch);