AssertMessage Mutator

Automatically generates a pretty formated message for assertions by extracting the condition code from the sources and embedding it into the error message.

Example

Assert.IsTrue(x != y);
Assert.IsTrue(x != y, "x != y where x = {0}, y = {1}", x, y);

Requirements: