| 47 | } |
| 48 | |
| 49 | TEST(Sim3d, Default) { |
| 50 | const Sim3d tform; |
| 51 | EXPECT_EQ(tform.scale(), 1); |
| 52 | EXPECT_EQ(tform.rotation().coeffs(), Eigen::Quaterniond::Identity().coeffs()); |
| 53 | EXPECT_EQ(tform.translation(), Eigen::Vector3d::Zero()); |
| 54 | } |
| 55 | |
| 56 | TEST(Sim3d, Equals) { |
| 57 | Sim3d tform; |
nothing calls this directly
no test coverage detected