~mbogomilov/maus/devel3

« back to all changes in this revision

Viewing changes to tests/cpp_unit/MAUSUnitTest.cc

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
      ::testing::InitGoogleTest(&argc, argv);
115
115
      std::cout << "Running tests" << std::endl;
116
116
      test_out = RUN_ALL_TESTS();
117
 
  } catch(Squeal squee) {
118
 
      std::cerr << squee.GetMessage() << "\n" << squee.GetLocation() << "\n"
119
 
                << squee.GetStackTrace() << std::endl;
 
117
  } catch(MAUS::Exception exc) {
 
118
      std::cerr << exc.GetMessage() << "\n" << exc.GetLocation() << "\n"
 
119
                << exc.GetStackTrace() << std::endl;
120
120
  } catch(std::exception exc) {
121
121
      std::cerr << "Caught std::exception" << "\n" << exc.what() << std::endl;
122
122
  }