Skip to content

Commit

Permalink
refs #6852 A bit more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Apr 22, 2013
1 parent f24d4e2 commit 5d8038f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,12 +240,13 @@ void testCopyMethadata()

if(!spws->getExperimentInfo(0)->run().hasProperty("W_MATRIX"))return;

Kernel::DblMatrix UnitMatr(3,3,true),wMatr;
Kernel::DblMatrix UnitMatr(3,3,true);
std::vector<double> libWMatr;

TS_ASSERT_THROWS_NOTHING(libWMatr=spws->getExperimentInfo(0)->run().getPropertyValueAsType<std::vector<double> >("W_MATRIX"));

//TSM_ASSERT("We have not set up anything so it should be unit matrix",wMatr.equals(UnitMatr));
Kernel::DblMatrix wMatr(libWMatr);
TSM_ASSERT("We have not set up anything so it should be unit matrix",wMatr.equals(UnitMatr));


}
Expand Down

0 comments on commit 5d8038f

Please sign in to comment.