~m-a-uchida/maus/RKdEdxDevel

« back to all changes in this revision

Viewing changes to tests/cpp_unit/Simulation/MAUSSteppingActionTest.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:
83
83
  stepping->SetWillKeepSteps(false);
84
84
  EXPECT_EQ(stepping->GetWillKeepSteps(), false);
85
85
 
86
 
  EXPECT_THROW(stepping->SetSteps(Json::Value(Json::objectValue)), Squeal);
 
86
  EXPECT_THROW(stepping->SetSteps(Json::Value(Json::objectValue)), MAUS::Exception);
87
87
  Json::Value array(Json::arrayValue);
88
88
  array.append(Json::Value("Hello"));
89
89
  EXPECT_NO_THROW(stepping->SetSteps(array));