like `assert(2 == 5)` should fail and print something like:... assert failed [__LINE__/__MODULE__]: Left hand side: 2 is 2, Right hand side: 5 is 5
Of course, I can design a function to do so myself, but I just want to know is there any de-facto way of achieving this?
Is there any unit-testing library that does this for me?