[1068] avoid using ASSERT_EQ in a constructor. ASSERT_EQ is not appropriate
since it would have to have a return value, and even any xxx_EQ doesn't make much sense because this is not actually what we are trying to test. I choise to simply let it fail (should it ever happens); we should be able to know by seeing some of the subsequent tests fail.
Please register or sign in to comment