Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
tonela10 committed May 14, 2024
1 parent 7209bbe commit 1a4b94d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions implementation/tests.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
QUnit.test('convertIntegerToRoman Test Cases', function(assert) {
test('convertIntegerToRoman Test Cases', function(assert) {
// Test Cases for convertIntegerToRoman

// TC-1
assert.equal(convertIntegerToRoman('1'), {value: 'I', message: '', result: true}, 'TC-1');
assert.equal(convertIntegerToRoman(1), {value: 'I', message: '', result: true}, 'TC-1');

// TC-2
assert.propEqual(convertIntegerToRoman(3999), {value: 'MMMCMXCIX', message: '', result: true}, 'TC-2');
Expand All @@ -20,7 +20,7 @@ QUnit.test('convertIntegerToRoman Test Cases', function(assert) {
assert.propEqual(convertIntegerToRoman(3.14), {value: 0, message: 'Please enter a valid integer', result: false}, 'TC-6');
});

QUnit.test('convertRomanToInteger Test Cases', function(assert) {
test('convertRomanToInteger Test Cases', function(assert) {
// Test Cases for convertRomanToInteger

// TC-1
Expand Down

0 comments on commit 1a4b94d

Please sign in to comment.