```c++ TYPED_TEST(ContainerReqsGeneral, MoveAssignment) { this->a_ = this->rv_; EXPECT_THAT(this->a_, testing::ContainerEq(this->r_)); } ``` doesn't actually perform move assignment, and it's probably not the only one where I made this mistake
doesn't actually perform move assignment, and it's probably not the only one where I made this mistake