Skip to content
Snippets Groups Projects
Commit c9126723 authored by Mike Pennisi's avatar Mike Pennisi
Browse files

Extend assertion error messages

When invoked without a custom assertion message, `assert.sameValue` and
`assert.notSameValue` automatically create a message that describes the
actual and expected values.

Extend both assertion methods to also include this information in cases
where a custom message has been specified.
parent f1900713
No related branches found
No related tags found
No related merge requests found
...@@ -25,8 +25,13 @@ assert.sameValue = function (actual, expected, message) { ...@@ -25,8 +25,13 @@ assert.sameValue = function (actual, expected, message) {
} }
if (message === undefined) { if (message === undefined) {
message = 'Expected SameValue(' + String(actual) + ', ' + String(expected) + ') to be true'; message = '';
} else {
message += ' ';
} }
message += 'Expected SameValue(' + String(actual) + ', ' + String(expected) + ') to be true';
$ERROR(message); $ERROR(message);
}; };
...@@ -36,8 +41,13 @@ assert.notSameValue = function (actual, unexpected, message) { ...@@ -36,8 +41,13 @@ assert.notSameValue = function (actual, unexpected, message) {
} }
if (message === undefined) { if (message === undefined) {
message = 'Expected SameValue(' + String(actual) + ', ' + String(unexpected) + ') to be false'; message = '';
} else {
message += ' ';
} }
message += 'Expected SameValue(' + String(actual) + ', ' + String(unexpected) + ') to be false';
$ERROR(message); $ERROR(message);
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment