ringbuf icon indicating copy to clipboard operation
ringbuf copied to clipboard

Test defects: move assignment

Open barometz opened this issue 3 years ago • 0 comments

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

barometz avatar Sep 11 '22 08:09 barometz