Asserts that the string values are equal.
AssertException otherwise
assertEquals("foo", "foo"); auto exception = expectThrows!AssertException(assertEquals("bar", "baz")); assertEquals("expected: <ba<r>> but was: <ba<z>>", exception.msg);
See Implementation
Asserts that the string values are equal.