From e3ae6dbecb647016148b64f0ef41dbda73a6ed32 Mon Sep 17 00:00:00 2001 From: Dagim-Daniel Date: Fri, 3 Jul 2026 13:32:34 +0100 Subject: [PATCH 1/7] Sprint 3 from implement and rewrite - i have done the implement part only. --- .../implement/1-get-angle-type.js | 51 +++++++++++++++++++ .../implement/2-is-proper-fraction.js | 15 ++++++ .../implement/3-get-card-value.js | 27 ++++++++++ 3 files changed, 93 insertions(+) diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js b/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js index 9e05a871e2..16c48e830d 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js @@ -16,6 +16,30 @@ function getAngleType(angle) { // TODO: Implement this function + if (angle>0 && angle<90) + { +return "Acute angle"; + } + else if (angle==90) + { + return "Right angle"; + } + else if (angle>90 && angle<180) + { + return "Obtuse angle"; + } + else if (angle==180) + { + return "Straight angle"; + } + else if (angle>180 && angle<360) + { + return "Reflex angle"; + } + else + { + return "Invalid angle"; + } } // The line below allows us to load the getAngleType function into tests in other files. @@ -35,3 +59,30 @@ function assertEquals(actualOutput, targetOutput) { // Example: Identify Right Angles const right = getAngleType(90); assertEquals(right, "Right angle"); + +const acute = getAngleType(1); +assertEquals(acute,"Acute angle"); + +const obtuse = getAngleType(90.5); +assertEquals(obtuse,"Obtuse angle"); + +const straight = getAngleType(180); +assertEquals(straight,"Straight angle"); + +const reflex = getAngleType(359.9); +assertEquals(reflex,"Reflex angle"); + +const invalid = getAngleType(380); +assertEquals(invalid,"Invalid angle"); + +const straight2 = getAngleType(180); +assertEquals(straight2,"Straight angle"); + +const invalid2 = getAngleType(360); +assertEquals(invalid2,"Invalid angle"); + +const acute2 = getAngleType(0.1); +assertEquals(acute2,"Acute angle"); + +const invalid3 = getAngleType(0); +assertEquals(invalid3,"Invalid angle"); \ No newline at end of file diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js b/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js index 970cb9b641..3fd208bf6c 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js @@ -12,6 +12,14 @@ function isProperFraction(numerator, denominator) { // TODO: Implement this function + numerator = Math.abs(numerator); + denominator = Math.abs(denominator); + if (numerator= 2 && numvalue <= 10) { + return numvalue; + } } // The line below allows us to load the getCardValue function into tests in other files. @@ -41,6 +60,14 @@ function assertEquals(actualOutput, targetOutput) { // Examples: assertEquals(getCardValue("9♠"), 9); +assertEquals(getCardValue("A♥"),11); +assertEquals(getCardValue("10♠"),10); + + +assertEquals(getCardValue("2♠"), 2); +assertEquals(getCardValue("K♠"), 10); +assertEquals(getCardValue("q♦"), 10); +assertEquals(getCardValue("J♣"), 10); // Handling invalid cards try { getCardValue("invalid"); From c822d538910bba2a0e5b47084792104ec62703c8 Mon Sep 17 00:00:00 2001 From: Dagim-Daniel Date: Mon, 6 Jul 2026 18:12:23 +0100 Subject: [PATCH 2/7] sprint 3 implement and rewrite - i modified the implement part of get-card-value add line 37 to 40 and also done with the rewrite tests with jest tasks. --- .../implement/3-get-card-value.js | 7 +++-- .../1-get-angle-type.test.js | 29 +++++++++++++++++++ .../2-is-proper-fraction.test.js | 19 ++++++++++++ .../3-get-card-value.test.js | 26 +++++++++++++++++ package.json | 6 ++-- 5 files changed, 81 insertions(+), 6 deletions(-) diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js index 364fe0c5b6..8508beaf9c 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js @@ -34,6 +34,10 @@ function getCardValue(card) { const faceCardValues = {'A': 11, 'J': 10, 'Q': 10, 'K': 10}; +if(faceCardValues[value] === undefined && (Number(value) < 2 || Number(value) > 10)) { + throw new Error("Invalid card"); + } + if (faceCardValues[value] !== undefined) { return faceCardValues[value]; } @@ -59,11 +63,8 @@ function assertEquals(actualOutput, targetOutput) { // TODO: Write tests to cover all outcomes, including throwing errors for invalid cards. // Examples: assertEquals(getCardValue("9♠"), 9); - assertEquals(getCardValue("A♥"),11); assertEquals(getCardValue("10♠"),10); - - assertEquals(getCardValue("2♠"), 2); assertEquals(getCardValue("K♠"), 10); assertEquals(getCardValue("q♦"), 10); diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js index d777f348d3..5d4445b467 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js @@ -14,7 +14,36 @@ test(`should return "Acute angle" when (0 < angle < 90)`, () => { }); // Case 2: Right angle +test(`should return "Right angle" when (Angle ===90)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(90)).toEqual("Right angle"); + +}); + // Case 3: Obtuse angles +test(`should return "Obtuse angle" when ( 90 < angle < 180)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(91)).toEqual("Obtuse angle"); + expect(getAngleType(125)).toEqual("Obtuse angle"); + expect(getAngleType(179)).toEqual("Obtuse angle"); +}); + // Case 4: Straight angle +test(`should return "Straight angle" when (angle === 180)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(180)).toEqual("Straight angle"); +}); // Case 5: Reflex angles +test(`should return "Reflex angle" when (180 < angle < 360)`, () => { + // Test various reflex angles, including boundary cases + expect(getAngleType(181)).toEqual("Reflex angle"); + expect(getAngleType(270)).toEqual("Reflex angle"); + expect(getAngleType(359)).toEqual("Reflex angle"); +}); // Case 6: Invalid angles +test(`should return "Invalid angle" when (angle < 0 || angle > 360)`, () => { + // Test various invalid angles + expect(getAngleType(-1)).toEqual("Invalid angle"); + expect(getAngleType(361)).toEqual("Invalid angle"); + expect(getAngleType(0)).toEqual("Invalid angle"); +}); \ No newline at end of file diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js index 7f087b2ba1..2e9b73fe4d 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js @@ -3,8 +3,27 @@ const isProperFraction = require("../implement/2-is-proper-fraction"); // TODO: Write tests in Jest syntax to cover all combinations of positives, negatives, zeros, and other categories. +test(`should return True when denominator is positive and less than numerator`, () => { + expect(isProperFraction(1, 2)).toEqual(true); + expect(isProperFraction(-1, 2)).toEqual(true ); + expect(isProperFraction(20, 21)).toEqual(true ); + expect(isProperFraction(60, 90)).toEqual(true ); +}); + +test(`should return false when denominator greater than numerator`, () => { + expect(isProperFraction(10, 1)).toEqual(false); + expect(isProperFraction(11, 1)).toEqual(false); +}); + +test(`should return false when denominator and numerators are Equal`, () => { + expect(isProperFraction(1, 1)).toEqual(false); + expect(isProperFraction(-1,-1)).toEqual(false); + expect(isProperFraction(-1, 1)).toEqual(false); +}); // Special case: numerator is zero test(`should return false when denominator is zero`, () => { expect(isProperFraction(1, 0)).toEqual(false); + expect(isProperFraction(-1, 0)).toEqual(false); + expect(isProperFraction(0, 0)).toEqual(false); }); diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js index cf7f9dae2e..e24d5902c3 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js @@ -11,8 +11,34 @@ test(`Should return 11 when given an ace card`, () => { // Suggestion: Group the remaining test data into these categories: // Number Cards (2-10) +test(`Should return 10 when given a number card`, () => { + expect(getCardValue("2♠")).toEqual(2); + expect(getCardValue("3♦")).toEqual(3); + expect(getCardValue("4♣")).toEqual(4); + expect(getCardValue("5♠")).toEqual(5); + expect(getCardValue("6♦")).toEqual(6); + expect(getCardValue("7♣")).toEqual(7); + expect(getCardValue("8♠")).toEqual(8); + expect(getCardValue("9♦")).toEqual(9); + expect(getCardValue("10♣")).toEqual(10); +}); // Face Cards (J, Q, K) +test(`Should return 10 when given a number card`, () => { + expect(getCardValue("K♠")).toEqual(10); + expect(getCardValue("q♦")).toEqual(10); + expect(getCardValue("J♣")).toEqual(10); +}); + // Invalid Cards +test(`Should return Invalid Cards when given invalid inputs`, () => { + expect(() => getCardValue("")).toThrow(); + expect(() => getCardValue("11")).toThrow(); + expect(() => getCardValue("♠10")).toThrow(); + expect(() => getCardValue("invalid")).toThrow(); + expect(() => getCardValue("1♠")).toThrow(); + expect(() => getCardValue("ab")).toThrow(); + +}); // To learn how to test whether a function throws an error as expected in Jest, // please refer to the Jest documentation: diff --git a/package.json b/package.json index 0657e22dd8..5ebcdf7334 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "keywords": [], "author": "Code Your Future", "license": "ISC", - "dependencies": { - "jest": "^29.7.0" + "devDependencies": { + "jest": "^30.4.2" } -} \ No newline at end of file +} From 3538f2895ba6f559d38141cf8c63473cb5e3e692 Mon Sep 17 00:00:00 2001 From: Dagim-Daniel Date: Mon, 6 Jul 2026 18:35:18 +0100 Subject: [PATCH 3/7] Revert "sprint 3 implement and rewrite - i modified the implement part of get-card-value add line 37 to 40 and also done with the rewrite tests with jest tasks." This reverts commit c822d538910bba2a0e5b47084792104ec62703c8. --- .../implement/3-get-card-value.js | 7 ++--- .../1-get-angle-type.test.js | 29 ------------------- .../2-is-proper-fraction.test.js | 19 ------------ .../3-get-card-value.test.js | 26 ----------------- package.json | 6 ++-- 5 files changed, 6 insertions(+), 81 deletions(-) diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js index 8508beaf9c..364fe0c5b6 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js @@ -34,10 +34,6 @@ function getCardValue(card) { const faceCardValues = {'A': 11, 'J': 10, 'Q': 10, 'K': 10}; -if(faceCardValues[value] === undefined && (Number(value) < 2 || Number(value) > 10)) { - throw new Error("Invalid card"); - } - if (faceCardValues[value] !== undefined) { return faceCardValues[value]; } @@ -63,8 +59,11 @@ function assertEquals(actualOutput, targetOutput) { // TODO: Write tests to cover all outcomes, including throwing errors for invalid cards. // Examples: assertEquals(getCardValue("9♠"), 9); + assertEquals(getCardValue("A♥"),11); assertEquals(getCardValue("10♠"),10); + + assertEquals(getCardValue("2♠"), 2); assertEquals(getCardValue("K♠"), 10); assertEquals(getCardValue("q♦"), 10); diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js index 5d4445b467..d777f348d3 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js @@ -14,36 +14,7 @@ test(`should return "Acute angle" when (0 < angle < 90)`, () => { }); // Case 2: Right angle -test(`should return "Right angle" when (Angle ===90)`, () => { - // Test various acute angles, including boundary cases - expect(getAngleType(90)).toEqual("Right angle"); - -}); - // Case 3: Obtuse angles -test(`should return "Obtuse angle" when ( 90 < angle < 180)`, () => { - // Test various acute angles, including boundary cases - expect(getAngleType(91)).toEqual("Obtuse angle"); - expect(getAngleType(125)).toEqual("Obtuse angle"); - expect(getAngleType(179)).toEqual("Obtuse angle"); -}); - // Case 4: Straight angle -test(`should return "Straight angle" when (angle === 180)`, () => { - // Test various acute angles, including boundary cases - expect(getAngleType(180)).toEqual("Straight angle"); -}); // Case 5: Reflex angles -test(`should return "Reflex angle" when (180 < angle < 360)`, () => { - // Test various reflex angles, including boundary cases - expect(getAngleType(181)).toEqual("Reflex angle"); - expect(getAngleType(270)).toEqual("Reflex angle"); - expect(getAngleType(359)).toEqual("Reflex angle"); -}); // Case 6: Invalid angles -test(`should return "Invalid angle" when (angle < 0 || angle > 360)`, () => { - // Test various invalid angles - expect(getAngleType(-1)).toEqual("Invalid angle"); - expect(getAngleType(361)).toEqual("Invalid angle"); - expect(getAngleType(0)).toEqual("Invalid angle"); -}); \ No newline at end of file diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js index 2e9b73fe4d..7f087b2ba1 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js @@ -3,27 +3,8 @@ const isProperFraction = require("../implement/2-is-proper-fraction"); // TODO: Write tests in Jest syntax to cover all combinations of positives, negatives, zeros, and other categories. -test(`should return True when denominator is positive and less than numerator`, () => { - expect(isProperFraction(1, 2)).toEqual(true); - expect(isProperFraction(-1, 2)).toEqual(true ); - expect(isProperFraction(20, 21)).toEqual(true ); - expect(isProperFraction(60, 90)).toEqual(true ); -}); - -test(`should return false when denominator greater than numerator`, () => { - expect(isProperFraction(10, 1)).toEqual(false); - expect(isProperFraction(11, 1)).toEqual(false); -}); - -test(`should return false when denominator and numerators are Equal`, () => { - expect(isProperFraction(1, 1)).toEqual(false); - expect(isProperFraction(-1,-1)).toEqual(false); - expect(isProperFraction(-1, 1)).toEqual(false); -}); // Special case: numerator is zero test(`should return false when denominator is zero`, () => { expect(isProperFraction(1, 0)).toEqual(false); - expect(isProperFraction(-1, 0)).toEqual(false); - expect(isProperFraction(0, 0)).toEqual(false); }); diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js index e24d5902c3..cf7f9dae2e 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js @@ -11,34 +11,8 @@ test(`Should return 11 when given an ace card`, () => { // Suggestion: Group the remaining test data into these categories: // Number Cards (2-10) -test(`Should return 10 when given a number card`, () => { - expect(getCardValue("2♠")).toEqual(2); - expect(getCardValue("3♦")).toEqual(3); - expect(getCardValue("4♣")).toEqual(4); - expect(getCardValue("5♠")).toEqual(5); - expect(getCardValue("6♦")).toEqual(6); - expect(getCardValue("7♣")).toEqual(7); - expect(getCardValue("8♠")).toEqual(8); - expect(getCardValue("9♦")).toEqual(9); - expect(getCardValue("10♣")).toEqual(10); -}); // Face Cards (J, Q, K) -test(`Should return 10 when given a number card`, () => { - expect(getCardValue("K♠")).toEqual(10); - expect(getCardValue("q♦")).toEqual(10); - expect(getCardValue("J♣")).toEqual(10); -}); - // Invalid Cards -test(`Should return Invalid Cards when given invalid inputs`, () => { - expect(() => getCardValue("")).toThrow(); - expect(() => getCardValue("11")).toThrow(); - expect(() => getCardValue("♠10")).toThrow(); - expect(() => getCardValue("invalid")).toThrow(); - expect(() => getCardValue("1♠")).toThrow(); - expect(() => getCardValue("ab")).toThrow(); - -}); // To learn how to test whether a function throws an error as expected in Jest, // please refer to the Jest documentation: diff --git a/package.json b/package.json index 5ebcdf7334..0657e22dd8 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "keywords": [], "author": "Code Your Future", "license": "ISC", - "devDependencies": { - "jest": "^30.4.2" + "dependencies": { + "jest": "^29.7.0" } -} +} \ No newline at end of file From b37f1b26eee4fa75f4fe34909c2abaa3f8cc3361 Mon Sep 17 00:00:00 2001 From: Dagim-Daniel Date: Mon, 6 Jul 2026 18:48:22 +0100 Subject: [PATCH 4/7] Sprint 3 all tasks under implement and rewrite-tests with jest has been done --- .../implement/2-is-proper-fraction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js b/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js index 3fd208bf6c..a757fed8a5 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js @@ -37,7 +37,7 @@ function assertEquals(actualOutput, targetOutput) { // TODO: Write tests to cover all cases. // What combinations of numerators and denominators should you test? -// Example: 1/2 is a proper fraction +// Example: 1/2 is a proper fraction. assertEquals(isProperFraction(1, 2), true); assertEquals(isProperFraction(1,1),false); From 927466a0ea5ac32234409e55f9a0ee3ab27ac92e Mon Sep 17 00:00:00 2001 From: Dagim-Daniel Date: Mon, 6 Jul 2026 19:15:54 +0100 Subject: [PATCH 5/7] Sprint 3 implement and rewrite-test with jest is done, i modified get-card-value adding line 37 to line 40 and i also completed the rewrite-test with jest section - i revert a commit so i work on it again and re- commit it( problem was the jest edited the jason file -version) --- .../implement/3-get-card-value.js | 5 + .../1-get-angle-type.test.js | 30 ++ .../2-is-proper-fraction.test.js | 16 + .../3-get-card-value.test.js | 26 ++ coverage/clover.xml | 117 ++++++ coverage/coverage-final.json | 8 + .../implement/1-get-angle-type.js.html | 346 ++++++++++++++++++ .../implement/2-is-proper-fraction.js.html | 226 ++++++++++++ .../implement/3-get-card-value.js.html | 343 +++++++++++++++++ .../implement/index.html | 146 ++++++++ .../lcov-report/2-practice-tdd/count.js.html | 100 +++++ .../2-practice-tdd/get-ordinal-number.js.html | 100 +++++ .../lcov-report/2-practice-tdd/index.html | 146 ++++++++ .../2-practice-tdd/repeat-str.js.html | 106 ++++++ coverage/lcov-report/4-stretch/index.html | 116 ++++++ .../4-stretch/password-validator.js.html | 100 +++++ coverage/lcov-report/base.css | 224 ++++++++++++ coverage/lcov-report/block-navigation.js | 87 +++++ coverage/lcov-report/favicon.png | Bin 0 -> 445 bytes coverage/lcov-report/index.html | 146 ++++++++ coverage/lcov-report/prettify.css | 1 + coverage/lcov-report/prettify.js | 2 + coverage/lcov-report/sort-arrow-sprite.png | Bin 0 -> 138 bytes coverage/lcov-report/sorter.js | 210 +++++++++++ coverage/lcov.info | 197 ++++++++++ 25 files changed, 2798 insertions(+) create mode 100644 coverage/clover.xml create mode 100644 coverage/coverage-final.json create mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html create mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html create mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html create mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html create mode 100644 coverage/lcov-report/2-practice-tdd/count.js.html create mode 100644 coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html create mode 100644 coverage/lcov-report/2-practice-tdd/index.html create mode 100644 coverage/lcov-report/2-practice-tdd/repeat-str.js.html create mode 100644 coverage/lcov-report/4-stretch/index.html create mode 100644 coverage/lcov-report/4-stretch/password-validator.js.html create mode 100644 coverage/lcov-report/base.css create mode 100644 coverage/lcov-report/block-navigation.js create mode 100644 coverage/lcov-report/favicon.png create mode 100644 coverage/lcov-report/index.html create mode 100644 coverage/lcov-report/prettify.css create mode 100644 coverage/lcov-report/prettify.js create mode 100644 coverage/lcov-report/sort-arrow-sprite.png create mode 100644 coverage/lcov-report/sorter.js create mode 100644 coverage/lcov.info diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js index 364fe0c5b6..a33bfc21ba 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js @@ -34,6 +34,11 @@ function getCardValue(card) { const faceCardValues = {'A': 11, 'J': 10, 'Q': 10, 'K': 10}; + if(faceCardValues[value] === undefined && (Number(value) < 2 || Number(value) > 10)) { + throw new Error("Invalid card"); + } + + if (faceCardValues[value] !== undefined) { return faceCardValues[value]; } diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js index d777f348d3..320f412274 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js @@ -14,7 +14,37 @@ test(`should return "Acute angle" when (0 < angle < 90)`, () => { }); // Case 2: Right angle +test(`should return "Right angle" when (Angle ===90)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(90)).toEqual("Right angle"); + +}); + // Case 3: Obtuse angles +test(`should return "Obtuse angle" when ( 90 < angle < 180)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(91)).toEqual("Obtuse angle"); + expect(getAngleType(125)).toEqual("Obtuse angle"); + expect(getAngleType(179)).toEqual("Obtuse angle"); +}); + // Case 4: Straight angle +test(`should return "Straight angle" when (angle === 180)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(180)).toEqual("Straight angle"); +}); // Case 5: Reflex angles +test(`should return "Reflex angle" when (180 < angle < 360)`, () => { + // Test various reflex angles, including boundary cases + expect(getAngleType(181)).toEqual("Reflex angle"); + expect(getAngleType(270)).toEqual("Reflex angle"); + expect(getAngleType(359)).toEqual("Reflex angle"); +}); // Case 6: Invalid angles +test(`should return "Invalid angle" when (angle < 0 || angle > 360)`, () => { + // Test various invalid angles + expect(getAngleType(-1)).toEqual("Invalid angle"); + expect(getAngleType(361)).toEqual("Invalid angle"); + expect(getAngleType(0)).toEqual("Invalid angle"); +}); + diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js index 7f087b2ba1..be88c2f88b 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js @@ -3,8 +3,24 @@ const isProperFraction = require("../implement/2-is-proper-fraction"); // TODO: Write tests in Jest syntax to cover all combinations of positives, negatives, zeros, and other categories. +test(`should return True when denominator is positive and less than numerator`, () => { + expect(isProperFraction(1, 2)).toEqual(true); + expect(isProperFraction(-1, 2)).toEqual(true ); + expect(isProperFraction(1, 10)).toEqual(true); +}); + +test(`should return false when denominator is less than numerator`, () => { + expect(isProperFraction(22, 20)).toEqual(false); + expect(isProperFraction(11, 10)).toEqual(false); +}); + +test(`should return false when denominator and numerator are equal`, () => { + expect(isProperFraction(1, 1)).toEqual(false); + expect(isProperFraction(-1, -1)).toEqual(false); +}); // Special case: numerator is zero test(`should return false when denominator is zero`, () => { expect(isProperFraction(1, 0)).toEqual(false); + expect(isProperFraction(-1, 0)).toEqual(false); }); diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js index cf7f9dae2e..e24d5902c3 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js @@ -11,8 +11,34 @@ test(`Should return 11 when given an ace card`, () => { // Suggestion: Group the remaining test data into these categories: // Number Cards (2-10) +test(`Should return 10 when given a number card`, () => { + expect(getCardValue("2♠")).toEqual(2); + expect(getCardValue("3♦")).toEqual(3); + expect(getCardValue("4♣")).toEqual(4); + expect(getCardValue("5♠")).toEqual(5); + expect(getCardValue("6♦")).toEqual(6); + expect(getCardValue("7♣")).toEqual(7); + expect(getCardValue("8♠")).toEqual(8); + expect(getCardValue("9♦")).toEqual(9); + expect(getCardValue("10♣")).toEqual(10); +}); // Face Cards (J, Q, K) +test(`Should return 10 when given a number card`, () => { + expect(getCardValue("K♠")).toEqual(10); + expect(getCardValue("q♦")).toEqual(10); + expect(getCardValue("J♣")).toEqual(10); +}); + // Invalid Cards +test(`Should return Invalid Cards when given invalid inputs`, () => { + expect(() => getCardValue("")).toThrow(); + expect(() => getCardValue("11")).toThrow(); + expect(() => getCardValue("♠10")).toThrow(); + expect(() => getCardValue("invalid")).toThrow(); + expect(() => getCardValue("1♠")).toThrow(); + expect(() => getCardValue("ab")).toThrow(); + +}); // To learn how to test whether a function throws an error as expected in Jest, // please refer to the Jest documentation: diff --git a/coverage/clover.xml b/coverage/clover.xml new file mode 100644 index 0000000000..a7dd99346b --- /dev/null +++ b/coverage/clover.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/coverage/coverage-final.json b/coverage/coverage-final.json new file mode 100644 index 0000000000..3d46e5e059 --- /dev/null +++ b/coverage/coverage-final.json @@ -0,0 +1,8 @@ +{"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js","statementMap":{"0":{"start":{"line":19,"column":2},"end":{"line":42,"column":3}},"1":{"start":{"line":21,"column":0},"end":{"line":21,"column":21}},"2":{"start":{"line":23,"column":6},"end":{"line":42,"column":3}},"3":{"start":{"line":25,"column":1},"end":{"line":25,"column":22}},"4":{"start":{"line":27,"column":7},"end":{"line":42,"column":3}},"5":{"start":{"line":29,"column":4},"end":{"line":29,"column":26}},"6":{"start":{"line":31,"column":7},"end":{"line":42,"column":3}},"7":{"start":{"line":33,"column":4},"end":{"line":33,"column":28}},"8":{"start":{"line":35,"column":7},"end":{"line":42,"column":3}},"9":{"start":{"line":37,"column":4},"end":{"line":37,"column":26}},"10":{"start":{"line":41,"column":2},"end":{"line":41,"column":25}},"11":{"start":{"line":47,"column":0},"end":{"line":47,"column":30}},"12":{"start":{"line":52,"column":2},"end":{"line":55,"column":4}},"13":{"start":{"line":60,"column":14},"end":{"line":60,"column":30}},"14":{"start":{"line":61,"column":0},"end":{"line":61,"column":35}},"15":{"start":{"line":63,"column":14},"end":{"line":63,"column":29}},"16":{"start":{"line":64,"column":0},"end":{"line":64,"column":34}},"17":{"start":{"line":66,"column":15},"end":{"line":66,"column":33}},"18":{"start":{"line":67,"column":0},"end":{"line":67,"column":36}},"19":{"start":{"line":69,"column":17},"end":{"line":69,"column":34}},"20":{"start":{"line":70,"column":0},"end":{"line":70,"column":40}},"21":{"start":{"line":72,"column":15},"end":{"line":72,"column":34}},"22":{"start":{"line":73,"column":0},"end":{"line":73,"column":36}},"23":{"start":{"line":75,"column":16},"end":{"line":75,"column":33}},"24":{"start":{"line":76,"column":0},"end":{"line":76,"column":38}},"25":{"start":{"line":78,"column":18},"end":{"line":78,"column":35}},"26":{"start":{"line":79,"column":0},"end":{"line":79,"column":41}},"27":{"start":{"line":81,"column":17},"end":{"line":81,"column":34}},"28":{"start":{"line":82,"column":0},"end":{"line":82,"column":39}},"29":{"start":{"line":84,"column":15},"end":{"line":84,"column":32}},"30":{"start":{"line":85,"column":0},"end":{"line":85,"column":35}},"31":{"start":{"line":87,"column":17},"end":{"line":87,"column":32}},"32":{"start":{"line":88,"column":0},"end":{"line":88,"column":39}}},"fnMap":{"0":{"name":"getAngleType","decl":{"start":{"line":17,"column":9},"end":{"line":17,"column":21}},"loc":{"start":{"line":17,"column":29},"end":{"line":43,"column":1}},"line":17},"1":{"name":"assertEquals","decl":{"start":{"line":51,"column":9},"end":{"line":51,"column":21}},"loc":{"start":{"line":51,"column":50},"end":{"line":56,"column":1}},"line":51}},"branchMap":{"0":{"loc":{"start":{"line":19,"column":2},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":19,"column":2},"end":{"line":42,"column":3}},{"start":{"line":23,"column":6},"end":{"line":42,"column":3}}],"line":19},"1":{"loc":{"start":{"line":19,"column":6},"end":{"line":19,"column":25}},"type":"binary-expr","locations":[{"start":{"line":19,"column":6},"end":{"line":19,"column":13}},{"start":{"line":19,"column":17},"end":{"line":19,"column":25}}],"line":19},"2":{"loc":{"start":{"line":23,"column":6},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":23,"column":6},"end":{"line":42,"column":3}},{"start":{"line":27,"column":7},"end":{"line":42,"column":3}}],"line":23},"3":{"loc":{"start":{"line":27,"column":7},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":27,"column":7},"end":{"line":42,"column":3}},{"start":{"line":31,"column":7},"end":{"line":42,"column":3}}],"line":27},"4":{"loc":{"start":{"line":27,"column":11},"end":{"line":27,"column":32}},"type":"binary-expr","locations":[{"start":{"line":27,"column":11},"end":{"line":27,"column":19}},{"start":{"line":27,"column":23},"end":{"line":27,"column":32}}],"line":27},"5":{"loc":{"start":{"line":31,"column":7},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":31,"column":7},"end":{"line":42,"column":3}},{"start":{"line":35,"column":7},"end":{"line":42,"column":3}}],"line":31},"6":{"loc":{"start":{"line":35,"column":7},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":35,"column":7},"end":{"line":42,"column":3}},{"start":{"line":40,"column":4},"end":{"line":42,"column":3}}],"line":35},"7":{"loc":{"start":{"line":35,"column":11},"end":{"line":35,"column":33}},"type":"binary-expr","locations":[{"start":{"line":35,"column":11},"end":{"line":35,"column":20}},{"start":{"line":35,"column":24},"end":{"line":35,"column":33}}],"line":35}},"s":{"0":24,"1":5,"2":19,"3":2,"4":17,"5":4,"6":13,"7":3,"8":10,"9":4,"10":6,"11":1,"12":10,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1},"f":{"0":24,"1":10},"b":{"0":[5,19],"1":[24,21],"2":[2,17],"3":[4,13],"4":[17,14],"5":[3,10],"6":[4,6],"7":[10,7]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"2c72c99b6a06f5d214d433f6778261cfd4c62f61"} +,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js","statementMap":{"0":{"start":{"line":15,"column":2},"end":{"line":15,"column":34}},"1":{"start":{"line":16,"column":2},"end":{"line":16,"column":38}},"2":{"start":{"line":17,"column":2},"end":{"line":22,"column":17}},"3":{"start":{"line":19,"column":4},"end":{"line":19,"column":16}},"4":{"start":{"line":22,"column":4},"end":{"line":22,"column":17}},"5":{"start":{"line":27,"column":0},"end":{"line":27,"column":34}},"6":{"start":{"line":31,"column":2},"end":{"line":34,"column":4}},"7":{"start":{"line":41,"column":0},"end":{"line":41,"column":43}},"8":{"start":{"line":43,"column":0},"end":{"line":43,"column":42}},"9":{"start":{"line":44,"column":0},"end":{"line":44,"column":49}},"10":{"start":{"line":45,"column":0},"end":{"line":45,"column":42}},"11":{"start":{"line":46,"column":0},"end":{"line":46,"column":45}},"12":{"start":{"line":47,"column":0},"end":{"line":47,"column":44}},"13":{"start":{"line":48,"column":0},"end":{"line":48,"column":44}}},"fnMap":{"0":{"name":"isProperFraction","decl":{"start":{"line":13,"column":9},"end":{"line":13,"column":25}},"loc":{"start":{"line":13,"column":50},"end":{"line":23,"column":1}},"line":13},"1":{"name":"assertEquals","decl":{"start":{"line":30,"column":9},"end":{"line":30,"column":21}},"loc":{"start":{"line":30,"column":50},"end":{"line":35,"column":1}},"line":30}},"branchMap":{"0":{"loc":{"start":{"line":17,"column":2},"end":{"line":22,"column":17}},"type":"if","locations":[{"start":{"line":17,"column":2},"end":{"line":22,"column":17}},{"start":{"line":22,"column":4},"end":{"line":22,"column":17}}],"line":17}},"s":{"0":16,"1":16,"2":16,"3":6,"4":10,"5":1,"6":7,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1},"f":{"0":16,"1":7},"b":{"0":[6,10]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"c6252d0c37e0ffade0e2ddee52b0384bc60eb58e"} +,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js","statementMap":{"0":{"start":{"line":26,"column":17},"end":{"line":26,"column":48}},"1":{"start":{"line":27,"column":21},"end":{"line":27,"column":41}},"2":{"start":{"line":28,"column":15},"end":{"line":28,"column":29}},"3":{"start":{"line":31,"column":2},"end":{"line":33,"column":3}},"4":{"start":{"line":32,"column":4},"end":{"line":32,"column":36}},"5":{"start":{"line":35,"column":25},"end":{"line":35,"column":61}},"6":{"start":{"line":37,"column":2},"end":{"line":39,"column":3}},"7":{"start":{"line":38,"column":4},"end":{"line":38,"column":36}},"8":{"start":{"line":42,"column":2},"end":{"line":44,"column":3}},"9":{"start":{"line":43,"column":4},"end":{"line":43,"column":33}},"10":{"start":{"line":46,"column":19},"end":{"line":46,"column":32}},"11":{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},"12":{"start":{"line":48,"column":4},"end":{"line":48,"column":20}},"13":{"start":{"line":54,"column":0},"end":{"line":54,"column":30}},"14":{"start":{"line":58,"column":2},"end":{"line":61,"column":4}},"15":{"start":{"line":66,"column":0},"end":{"line":66,"column":36}},"16":{"start":{"line":68,"column":0},"end":{"line":68,"column":36}},"17":{"start":{"line":69,"column":0},"end":{"line":69,"column":37}},"18":{"start":{"line":72,"column":0},"end":{"line":72,"column":36}},"19":{"start":{"line":73,"column":0},"end":{"line":73,"column":37}},"20":{"start":{"line":74,"column":0},"end":{"line":74,"column":37}},"21":{"start":{"line":75,"column":0},"end":{"line":75,"column":37}},"22":{"start":{"line":77,"column":0},"end":{"line":84,"column":1}},"23":{"start":{"line":78,"column":2},"end":{"line":78,"column":26}},"24":{"start":{"line":81,"column":2},"end":{"line":81,"column":60}},"25":{"start":{"line":83,"column":2},"end":{"line":83,"column":50}}},"fnMap":{"0":{"name":"getCardValue","decl":{"start":{"line":24,"column":9},"end":{"line":24,"column":21}},"loc":{"start":{"line":24,"column":28},"end":{"line":50,"column":1}},"line":24},"1":{"name":"assertEquals","decl":{"start":{"line":57,"column":9},"end":{"line":57,"column":21}},"loc":{"start":{"line":57,"column":50},"end":{"line":62,"column":1}},"line":57}},"branchMap":{"0":{"loc":{"start":{"line":31,"column":2},"end":{"line":33,"column":3}},"type":"if","locations":[{"start":{"line":31,"column":2},"end":{"line":33,"column":3}},{"start":{},"end":{}}],"line":31},"1":{"loc":{"start":{"line":37,"column":2},"end":{"line":39,"column":3}},"type":"if","locations":[{"start":{"line":37,"column":2},"end":{"line":39,"column":3}},{"start":{},"end":{}}],"line":37},"2":{"loc":{"start":{"line":37,"column":5},"end":{"line":37,"column":85}},"type":"binary-expr","locations":[{"start":{"line":37,"column":5},"end":{"line":37,"column":40}},{"start":{"line":37,"column":45},"end":{"line":37,"column":62}},{"start":{"line":37,"column":66},"end":{"line":37,"column":84}}],"line":37},"3":{"loc":{"start":{"line":42,"column":2},"end":{"line":44,"column":3}},"type":"if","locations":[{"start":{"line":42,"column":2},"end":{"line":44,"column":3}},{"start":{},"end":{}}],"line":42},"4":{"loc":{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},"type":"if","locations":[{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},{"start":{},"end":{}}],"line":47},"5":{"loc":{"start":{"line":47,"column":6},"end":{"line":47,"column":37}},"type":"binary-expr","locations":[{"start":{"line":47,"column":6},"end":{"line":47,"column":19}},{"start":{"line":47,"column":23},"end":{"line":47,"column":37}}],"line":47}},"s":{"0":27,"1":27,"2":27,"3":27,"4":6,"5":21,"6":21,"7":1,"8":20,"9":8,"10":12,"11":12,"12":12,"13":1,"14":7,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":0,"25":1},"f":{"0":27,"1":7},"b":{"0":[6,21],"1":[1,20],"2":[21,13,12],"3":[8,12],"4":[12,0],"5":[12,12]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"230171526e3b77dbbd12fcfb362334dabe9d7fe8"} +,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/count.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/count.js","statementMap":{"0":{"start":{"line":2,"column":2},"end":{"line":2,"column":10}},"1":{"start":{"line":5,"column":0},"end":{"line":5,"column":27}}},"fnMap":{"0":{"name":"countChar","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":18}},"loc":{"start":{"line":1,"column":54},"end":{"line":3,"column":1}},"line":1}},"branchMap":{},"s":{"0":1,"1":1},"f":{"0":1},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"bff5e3d3ac763266e494e6ca93abc24a7547a1c3"} +,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/get-ordinal-number.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/get-ordinal-number.js","statementMap":{"0":{"start":{"line":2,"column":2},"end":{"line":2,"column":15}},"1":{"start":{"line":5,"column":0},"end":{"line":5,"column":34}}},"fnMap":{"0":{"name":"getOrdinalNumber","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":25}},"loc":{"start":{"line":1,"column":31},"end":{"line":3,"column":1}},"line":1}},"branchMap":{},"s":{"0":2,"1":1},"f":{"0":2},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"95902a97a1b90aa6aad303d0b9ea7192caada70f"} +,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/repeat-str.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/repeat-str.js","statementMap":{"0":{"start":{"line":4,"column":2},"end":{"line":4,"column":27}},"1":{"start":{"line":7,"column":0},"end":{"line":7,"column":27}}},"fnMap":{"0":{"name":"repeatStr","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":18}},"loc":{"start":{"line":1,"column":21},"end":{"line":5,"column":1}},"line":1}},"branchMap":{},"s":{"0":1,"1":1},"f":{"0":1},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"b726e0e4105ad64fa34dcbe092f2abf5cbf28499"} +,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/4-stretch/password-validator.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/4-stretch/password-validator.js","statementMap":{"0":{"start":{"line":2,"column":4},"end":{"line":2,"column":45}},"1":{"start":{"line":6,"column":0},"end":{"line":6,"column":35}}},"fnMap":{"0":{"name":"passwordValidator","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":26}},"loc":{"start":{"line":1,"column":37},"end":{"line":3,"column":1}},"line":1}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":11},"end":{"line":2,"column":45}},"type":"cond-expr","locations":[{"start":{"line":2,"column":33},"end":{"line":2,"column":38}},{"start":{"line":2,"column":41},"end":{"line":2,"column":45}}],"line":2}},"s":{"0":1,"1":1},"f":{"0":1},"b":{"0":[0,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"e76595f81b1a4903ce41125505bd2bfed9421035"} +} diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html new file mode 100644 index 0000000000..51c6f3c817 --- /dev/null +++ b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html @@ -0,0 +1,346 @@ + + + + + + Code coverage report for 1-implement-and-rewrite-tests/implement/1-get-angle-type.js + + + + + + + + + +
+
+

All files / 1-implement-and-rewrite-tests/implement 1-get-angle-type.js

+
+ +
+ 100% + Statements + 33/33 +
+ + +
+ 100% + Branches + 16/16 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 100% + Lines + 33/33 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +24x +  +5x +  +19x +  +2x +  +17x +  +4x +  +13x +  +3x +  +10x +  +4x +  +  +  +6x +  +  +  +  +  +1x +  +  +  +  +10x +  +  +  +  +  +  +  +1x +1x +  +1x +1x +  +1x +1x +  +1x +1x +  +1x +1x +  +1x +1x +  +1x +1x +  +1x +1x +  +1x +1x +  +1x +1x
// Implement a function getAngleType
+//
+// When given an angle in degrees, it should return a string indicating the type of angle:
+// - "Acute angle" for angles greater than 0° and less than 90°
+// - "Right angle" for exactly 90°
+// - "Obtuse angle" for angles greater than 90° and less than 180°
+// - "Straight angle" for exactly 180°
+// - "Reflex angle" for angles greater than 180° and less than 360°
+// - "Invalid angle" for angles outside the valid range.
+ 
+// Assumption: The parameter is a valid number. (You do not need to handle non-numeric inputs.)
+ 
+// Acceptance criteria:
+// After you have implemented the function, write tests to cover all the cases, and
+// execute the code to ensure all tests pass.
+ 
+function getAngleType(angle) {
+  // TODO: Implement this function
+  if (angle>0 && angle<90)
+  {
+return "Acute angle";
+  }
+ else if (angle==90)
+  {
+ return "Right angle";   
+  }
+  else if (angle>90 && angle<180)
+  {
+    return "Obtuse angle";
+  }
+  else if (angle==180)
+  {
+    return "Straight angle";
+  }
+  else if (angle>180 && angle<360)
+  {
+    return "Reflex angle";
+  }
+  else
+    {
+  return "Invalid angle";
+  }
+}
+ 
+// The line below allows us to load the getAngleType function into tests in other files.
+// This will be useful in the "rewrite tests with jest" step.
+module.exports = getAngleType;
+ 
+// This helper function is written to make our assertions easier to read.
+// If the actual output matches the target output, the test will pass
+function assertEquals(actualOutput, targetOutput) {
+  console.assert(
+    actualOutput === targetOutput,
+    `Expected ${actualOutput} to equal ${targetOutput}`
+  );
+}
+ 
+// TODO: Write tests to cover all cases, including boundary and invalid cases.
+// Example: Identify Right Angles
+const right = getAngleType(90);
+assertEquals(right, "Right angle");
+ 
+const acute = getAngleType(1);
+assertEquals(acute,"Acute angle");
+ 
+const obtuse = getAngleType(90.5);
+assertEquals(obtuse,"Obtuse angle");
+ 
+const straight = getAngleType(180);
+assertEquals(straight,"Straight angle");
+ 
+const reflex = getAngleType(359.9);
+assertEquals(reflex,"Reflex angle");
+ 
+const invalid = getAngleType(380);
+assertEquals(invalid,"Invalid angle");
+ 
+const straight2 = getAngleType(180);
+assertEquals(straight2,"Straight angle");
+ 
+const invalid2 = getAngleType(360);
+assertEquals(invalid2,"Invalid angle");
+ 
+const acute2 = getAngleType(0.1);
+assertEquals(acute2,"Acute angle");
+ 
+const invalid3 = getAngleType(0);
+assertEquals(invalid3,"Invalid angle");
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html new file mode 100644 index 0000000000..3f4c467038 --- /dev/null +++ b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html @@ -0,0 +1,226 @@ + + + + + + Code coverage report for 1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js + + + + + + + + + +
+
+

All files / 1-implement-and-rewrite-tests/implement 2-is-proper-fraction.js

+
+ +
+ 100% + Statements + 14/14 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 100% + Lines + 14/14 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48  +  +  +  +  +  +  +  +  +  +  +  +  +  +16x +16x +16x +  +6x +  +  +10x +  +  +  +  +1x +  +  +  +7x +  +  +  +  +  +  +  +  +  +1x +  +1x +1x +1x +1x +1x +1x
// Implement a function isProperFraction,
+// when given two numbers, a numerator and a denominator, it should return true if
+// the given numbers form a proper fraction, and false otherwise.
+ 
+// Assumption: The parameters are valid numbers (not NaN or Infinity).
+ 
+// Note: If you are unfamiliar with proper fractions, please look up its mathematical definition.
+ 
+// Acceptance criteria:
+// After you have implemented the function, write tests to cover all the cases, and
+// execute the code to ensure all tests pass.
+ 
+function isProperFraction(numerator, denominator) {
+  // TODO: Implement this function
+  numerator = Math.abs(numerator);
+  denominator = Math.abs(denominator);
+  if (numerator<denominator)
+  {
+    return true;
+  }
+  else
+    return false;
+}
+ 
+// The line below allows us to load the isProperFraction function into tests in other files.
+// This will be useful in the "rewrite tests with jest" step.
+module.exports = isProperFraction;
+ 
+// Here's our helper again
+function assertEquals(actualOutput, targetOutput) {
+  console.assert(
+    actualOutput === targetOutput,
+    `Expected ${actualOutput} to equal ${targetOutput}`
+  );
+}
+ 
+// TODO: Write tests to cover all cases.
+// What combinations of numerators and denominators should you test?
+ 
+// Example: 1/2 is a proper fraction.
+assertEquals(isProperFraction(1, 2), true);
+ 
+assertEquals(isProperFraction(1,1),false);
+assertEquals(isProperFraction(40234,98543),true);
+assertEquals(isProperFraction(2,1),false);
+assertEquals(isProperFraction(-10,-1),false);
+assertEquals(isProperFraction(-1,-10),true);
+assertEquals(isProperFraction(1.5,1),false);
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html new file mode 100644 index 0000000000..77e0683150 --- /dev/null +++ b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html @@ -0,0 +1,343 @@ + + + + + + Code coverage report for 1-implement-and-rewrite-tests/implement/3-get-card-value.js + + + + + + + + + +
+
+

All files / 1-implement-and-rewrite-tests/implement 3-get-card-value.js

+
+ +
+ 96.15% + Statements + 25/26 +
+ + +
+ 92.3% + Branches + 12/13 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 96.15% + Lines + 25/26 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +27x +27x +27x +  +  +27x +6x +  +  +21x +  +21x +1x +  +  +  +20x +8x +  +  +12x +12x +12x +  +  +  +  +  +1x +  +  +  +7x +  +  +  +  +  +  +  +1x +  +1x +1x +  +  +1x +1x +1x +1x +  +1x +1x +  +  +  +  +1x +  +  +  + 
// This problem involves playing cards: https://en.wikipedia.org/wiki/Standard_52-card_deck
+ 
+// Implement a function getCardValue, when given a string representing a playing card,
+// should return the numerical value of the card.
+ 
+// A valid card string will contain a rank followed by the suit.
+// The rank can be one of the following strings:
+//   "A", "2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K"
+// The suit can be one of the following emojis:
+//   "♠", "♥", "♦", "♣"
+// For example: "A♠", "2♥", "10♥", "J♣", "Q♦", "K♦".
+ 
+// When the card is an ace ("A"), the function should return 11.
+// When the card is a face card ("J", "Q", "K"), the function should return 10.
+// When the card is a number card ("2" to "10"), the function should return its numeric value.
+ 
+// When the card string is invalid (not following the above format), the function should
+// throw an error.
+ 
+// Acceptance criteria:
+// After you have implemented the function, write tests to cover all the cases, and
+// execute the code to ensure all tests pass.
+ 
+function getCardValue(card) {
+  // TODO: Implement this function
+   const value = card.slice(0, -1).toUpperCase();
+  const validSuits = "♠,♥,♦,♣".split(",");
+  const suit = card.slice(-1);
+ 
+ 
+  if(!validSuits.includes(suit)) {
+    throw new Error("Invalid card");
+  }
+ 
+  const faceCardValues = {'A': 11, 'J': 10, 'Q': 10, 'K': 10};
+ 
+  if(faceCardValues[value] === undefined && (Number(value) < 2 || Number(value) > 10)) {
+    throw new Error("Invalid card");
+  }
+ 
+ 
+  if (faceCardValues[value] !== undefined) {
+    return faceCardValues[value];
+  } 
+ 
+  const numvalue = Number(value);
+  Eif (numvalue >= 2 && numvalue <= 10) {
+    return numvalue;
+  }
+}
+ 
+// The line below allows us to load the getCardValue function into tests in other files.
+// This will be useful in the "rewrite tests with jest" step.
+module.exports = getCardValue;
+ 
+// Helper functions to make our assertions easier to read.
+function assertEquals(actualOutput, targetOutput) {
+  console.assert(
+    actualOutput === targetOutput,
+    `Expected ${actualOutput} to equal ${targetOutput}`
+  );
+}
+ 
+// TODO: Write tests to cover all outcomes, including throwing errors for invalid cards.
+// Examples:
+assertEquals(getCardValue("9♠"), 9);
+ 
+assertEquals(getCardValue("A♥"),11);
+assertEquals(getCardValue("10♠"),10);
+ 
+ 
+assertEquals(getCardValue("2♠"), 2);
+assertEquals(getCardValue("K♠"), 10);
+assertEquals(getCardValue("q♦"), 10);
+assertEquals(getCardValue("J♣"), 10);
+// Handling invalid cards
+try {
+  getCardValue("invalid");
+ 
+  // This line will not be reached if an error is thrown as expected
+  console.error("Error was not thrown for invalid card 😢");
+} catch (e) {
+  console.log("Error thrown for invalid card 🎉");
+}
+ 
+// What other invalid card cases can you think of?
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html new file mode 100644 index 0000000000..d968bcc6e9 --- /dev/null +++ b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for 1-implement-and-rewrite-tests/implement + + + + + + + + + +
+
+

All files 1-implement-and-rewrite-tests/implement

+
+ +
+ 98.63% + Statements + 72/73 +
+ + +
+ 96.77% + Branches + 30/31 +
+ + +
+ 100% + Functions + 6/6 +
+ + +
+ 98.63% + Lines + 72/73 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
1-get-angle-type.js +
+
100%33/33100%16/16100%2/2100%33/33
2-is-proper-fraction.js +
+
100%14/14100%2/2100%2/2100%14/14
3-get-card-value.js +
+
96.15%25/2692.3%12/13100%2/296.15%25/26
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/count.js.html b/coverage/lcov-report/2-practice-tdd/count.js.html new file mode 100644 index 0000000000..6533fd831b --- /dev/null +++ b/coverage/lcov-report/2-practice-tdd/count.js.html @@ -0,0 +1,100 @@ + + + + + + Code coverage report for 2-practice-tdd/count.js + + + + + + + + + +
+
+

All files / 2-practice-tdd count.js

+
+ +
+ 100% + Statements + 2/2 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 2/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6  +1x +  +  +1x + 
function countChar(stringOfCharacters, findCharacter) {
+  return 5
+}
+ 
+module.exports = countChar;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html b/coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html new file mode 100644 index 0000000000..70939185a9 --- /dev/null +++ b/coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html @@ -0,0 +1,100 @@ + + + + + + Code coverage report for 2-practice-tdd/get-ordinal-number.js + + + + + + + + + +
+
+

All files / 2-practice-tdd get-ordinal-number.js

+
+ +
+ 100% + Statements + 2/2 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 2/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6  +2x +  +  +1x + 
function getOrdinalNumber(num) {
+  return "1st";
+}
+ 
+module.exports = getOrdinalNumber;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/index.html b/coverage/lcov-report/2-practice-tdd/index.html new file mode 100644 index 0000000000..d3b778cc26 --- /dev/null +++ b/coverage/lcov-report/2-practice-tdd/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for 2-practice-tdd + + + + + + + + + +
+
+

All files 2-practice-tdd

+
+ +
+ 100% + Statements + 6/6 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 3/3 +
+ + +
+ 100% + Lines + 6/6 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
count.js +
+
100%2/2100%0/0100%1/1100%2/2
get-ordinal-number.js +
+
100%2/2100%0/0100%1/1100%2/2
repeat-str.js +
+
100%2/2100%0/0100%1/1100%2/2
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/repeat-str.js.html b/coverage/lcov-report/2-practice-tdd/repeat-str.js.html new file mode 100644 index 0000000000..f479c73cd2 --- /dev/null +++ b/coverage/lcov-report/2-practice-tdd/repeat-str.js.html @@ -0,0 +1,106 @@ + + + + + + Code coverage report for 2-practice-tdd/repeat-str.js + + + + + + + + + +
+
+

All files / 2-practice-tdd repeat-str.js

+
+ +
+ 100% + Statements + 2/2 +
+ + +
+ 100% + Branches + 0/0 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 2/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8  +  +  +1x +  +  +1x + 
function repeatStr() {
+  // Your implementation of this function must *not* call String.prototype.repeat (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat).
+  // The goal is to re-implement that function, not to use it.
+  return "hellohellohello";
+}
+ 
+module.exports = repeatStr;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/4-stretch/index.html b/coverage/lcov-report/4-stretch/index.html new file mode 100644 index 0000000000..0244d66f17 --- /dev/null +++ b/coverage/lcov-report/4-stretch/index.html @@ -0,0 +1,116 @@ + + + + + + Code coverage report for 4-stretch + + + + + + + + + +
+
+

All files 4-stretch

+
+ +
+ 100% + Statements + 2/2 +
+ + +
+ 50% + Branches + 1/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 2/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
password-validator.js +
+
100%2/250%1/2100%1/1100%2/2
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/4-stretch/password-validator.js.html b/coverage/lcov-report/4-stretch/password-validator.js.html new file mode 100644 index 0000000000..19d8fc2e7c --- /dev/null +++ b/coverage/lcov-report/4-stretch/password-validator.js.html @@ -0,0 +1,100 @@ + + + + + + Code coverage report for 4-stretch/password-validator.js + + + + + + + + + +
+
+

All files / 4-stretch password-validator.js

+
+ +
+ 100% + Statements + 2/2 +
+ + +
+ 50% + Branches + 1/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 2/2 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6  +1x +  +  +  +1x
function passwordValidator(password) {
+    return password.length < 5 ? false : true
+}
+ 
+ 
+module.exports = passwordValidator;
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/base.css b/coverage/lcov-report/base.css new file mode 100644 index 0000000000..f418035b46 --- /dev/null +++ b/coverage/lcov-report/base.css @@ -0,0 +1,224 @@ +body, html { + margin:0; padding: 0; + height: 100%; +} +body { + font-family: Helvetica Neue, Helvetica, Arial; + font-size: 14px; + color:#333; +} +.small { font-size: 12px; } +*, *:after, *:before { + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box; + } +h1 { font-size: 20px; margin: 0;} +h2 { font-size: 14px; } +pre { + font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace; + margin: 0; + padding: 0; + -moz-tab-size: 2; + -o-tab-size: 2; + tab-size: 2; +} +a { color:#0074D9; text-decoration:none; } +a:hover { text-decoration:underline; } +.strong { font-weight: bold; } +.space-top1 { padding: 10px 0 0 0; } +.pad2y { padding: 20px 0; } +.pad1y { padding: 10px 0; } +.pad2x { padding: 0 20px; } +.pad2 { padding: 20px; } +.pad1 { padding: 10px; } +.space-left2 { padding-left:55px; } +.space-right2 { padding-right:20px; } +.center { text-align:center; } +.clearfix { display:block; } +.clearfix:after { + content:''; + display:block; + height:0; + clear:both; + visibility:hidden; + } +.fl { float: left; } +@media only screen and (max-width:640px) { + .col3 { width:100%; max-width:100%; } + .hide-mobile { display:none!important; } +} + +.quiet { + color: #7f7f7f; + color: rgba(0,0,0,0.5); +} +.quiet a { opacity: 0.7; } + +.fraction { + font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; + font-size: 10px; + color: #555; + background: #E8E8E8; + padding: 4px 5px; + border-radius: 3px; + vertical-align: middle; +} + +div.path a:link, div.path a:visited { color: #333; } +table.coverage { + border-collapse: collapse; + margin: 10px 0 0 0; + padding: 0; +} + +table.coverage td { + margin: 0; + padding: 0; + vertical-align: top; +} +table.coverage td.line-count { + text-align: right; + padding: 0 5px 0 20px; +} +table.coverage td.line-coverage { + text-align: right; + padding-right: 10px; + min-width:20px; +} + +table.coverage td span.cline-any { + display: inline-block; + padding: 0 5px; + width: 100%; +} +.missing-if-branch { + display: inline-block; + margin-right: 5px; + border-radius: 3px; + position: relative; + padding: 0 4px; + background: #333; + color: yellow; +} + +.skip-if-branch { + display: none; + margin-right: 10px; + position: relative; + padding: 0 4px; + background: #ccc; + color: white; +} +.missing-if-branch .typ, .skip-if-branch .typ { + color: inherit !important; +} +.coverage-summary { + border-collapse: collapse; + width: 100%; +} +.coverage-summary tr { border-bottom: 1px solid #bbb; } +.keyline-all { border: 1px solid #ddd; } +.coverage-summary td, .coverage-summary th { padding: 10px; } +.coverage-summary tbody { border: 1px solid #bbb; } +.coverage-summary td { border-right: 1px solid #bbb; } +.coverage-summary td:last-child { border-right: none; } +.coverage-summary th { + text-align: left; + font-weight: normal; + white-space: nowrap; +} +.coverage-summary th.file { border-right: none !important; } +.coverage-summary th.pct { } +.coverage-summary th.pic, +.coverage-summary th.abs, +.coverage-summary td.pct, +.coverage-summary td.abs { text-align: right; } +.coverage-summary td.file { white-space: nowrap; } +.coverage-summary td.pic { min-width: 120px !important; } +.coverage-summary tfoot td { } + +.coverage-summary .sorter { + height: 10px; + width: 7px; + display: inline-block; + margin-left: 0.5em; + background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; +} +.coverage-summary .sorted .sorter { + background-position: 0 -20px; +} +.coverage-summary .sorted-desc .sorter { + background-position: 0 -10px; +} +.status-line { height: 10px; } +/* yellow */ +.cbranch-no { background: yellow !important; color: #111; } +/* dark red */ +.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 } +.low .chart { border:1px solid #C21F39 } +.highlighted, +.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{ + background: #C21F39 !important; +} +/* medium red */ +.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE } +/* light red */ +.low, .cline-no { background:#FCE1E5 } +/* light green */ +.high, .cline-yes { background:rgb(230,245,208) } +/* medium green */ +.cstat-yes { background:rgb(161,215,106) } +/* dark green */ +.status-line.high, .high .cover-fill { background:rgb(77,146,33) } +.high .chart { border:1px solid rgb(77,146,33) } +/* dark yellow (gold) */ +.status-line.medium, .medium .cover-fill { background: #f9cd0b; } +.medium .chart { border:1px solid #f9cd0b; } +/* light yellow */ +.medium { background: #fff4c2; } + +.cstat-skip { background: #ddd; color: #111; } +.fstat-skip { background: #ddd; color: #111 !important; } +.cbranch-skip { background: #ddd !important; color: #111; } + +span.cline-neutral { background: #eaeaea; } + +.coverage-summary td.empty { + opacity: .5; + padding-top: 4px; + padding-bottom: 4px; + line-height: 1; + color: #888; +} + +.cover-fill, .cover-empty { + display:inline-block; + height: 12px; +} +.chart { + line-height: 0; +} +.cover-empty { + background: white; +} +.cover-full { + border-right: none !important; +} +pre.prettyprint { + border: none !important; + padding: 0 !important; + margin: 0 !important; +} +.com { color: #999 !important; } +.ignore-none { color: #999; font-weight: normal; } + +.wrapper { + min-height: 100%; + height: auto !important; + height: 100%; + margin: 0 auto -48px; +} +.footer, .push { + height: 48px; +} diff --git a/coverage/lcov-report/block-navigation.js b/coverage/lcov-report/block-navigation.js new file mode 100644 index 0000000000..530d1ed2ba --- /dev/null +++ b/coverage/lcov-report/block-navigation.js @@ -0,0 +1,87 @@ +/* eslint-disable */ +var jumpToCode = (function init() { + // Classes of code we would like to highlight in the file view + var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no']; + + // Elements to highlight in the file listing view + var fileListingElements = ['td.pct.low']; + + // We don't want to select elements that are direct descendants of another match + var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > ` + + // Selector that finds elements on the page to which we can jump + var selector = + fileListingElements.join(', ') + + ', ' + + notSelector + + missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b` + + // The NodeList of matching elements + var missingCoverageElements = document.querySelectorAll(selector); + + var currentIndex; + + function toggleClass(index) { + missingCoverageElements + .item(currentIndex) + .classList.remove('highlighted'); + missingCoverageElements.item(index).classList.add('highlighted'); + } + + function makeCurrent(index) { + toggleClass(index); + currentIndex = index; + missingCoverageElements.item(index).scrollIntoView({ + behavior: 'smooth', + block: 'center', + inline: 'center' + }); + } + + function goToPrevious() { + var nextIndex = 0; + if (typeof currentIndex !== 'number' || currentIndex === 0) { + nextIndex = missingCoverageElements.length - 1; + } else if (missingCoverageElements.length > 1) { + nextIndex = currentIndex - 1; + } + + makeCurrent(nextIndex); + } + + function goToNext() { + var nextIndex = 0; + + if ( + typeof currentIndex === 'number' && + currentIndex < missingCoverageElements.length - 1 + ) { + nextIndex = currentIndex + 1; + } + + makeCurrent(nextIndex); + } + + return function jump(event) { + if ( + document.getElementById('fileSearch') === document.activeElement && + document.activeElement != null + ) { + // if we're currently focused on the search input, we don't want to navigate + return; + } + + switch (event.which) { + case 78: // n + case 74: // j + goToNext(); + break; + case 66: // b + case 75: // k + case 80: // p + goToPrevious(); + break; + } + }; +})(); +window.addEventListener('keydown', jumpToCode); diff --git a/coverage/lcov-report/favicon.png b/coverage/lcov-report/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..c1525b811a167671e9de1fa78aab9f5c0b61cef7 GIT binary patch literal 445 zcmV;u0Yd(XP))rP{nL}Ln%S7`m{0DjX9TLF* zFCb$4Oi7vyLOydb!7n&^ItCzb-%BoB`=x@N2jll2Nj`kauio%aw_@fe&*}LqlFT43 z8doAAe))z_%=P%v^@JHp3Hjhj^6*Kr_h|g_Gr?ZAa&y>wxHE99Gk>A)2MplWz2xdG zy8VD2J|Uf#EAw*bo5O*PO_}X2Tob{%bUoO2G~T`@%S6qPyc}VkhV}UifBuRk>%5v( z)x7B{I~z*k<7dv#5tC+m{km(D087J4O%+<<;K|qwefb6@GSX45wCK}Sn*> + + + + Code coverage report for All files + + + + + + + + + +
+
+

All files

+
+ +
+ 98.76% + Statements + 80/81 +
+ + +
+ 93.93% + Branches + 31/33 +
+ + +
+ 100% + Functions + 10/10 +
+ + +
+ 98.76% + Lines + 80/81 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
1-implement-and-rewrite-tests/implement +
+
98.63%72/7396.77%30/31100%6/698.63%72/73
2-practice-tdd +
+
100%6/6100%0/0100%3/3100%6/6
4-stretch +
+
100%2/250%1/2100%1/1100%2/2
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/coverage/lcov-report/prettify.css b/coverage/lcov-report/prettify.css new file mode 100644 index 0000000000..b317a7cda3 --- /dev/null +++ b/coverage/lcov-report/prettify.css @@ -0,0 +1 @@ +.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} diff --git a/coverage/lcov-report/prettify.js b/coverage/lcov-report/prettify.js new file mode 100644 index 0000000000..b3225238f2 --- /dev/null +++ b/coverage/lcov-report/prettify.js @@ -0,0 +1,2 @@ +/* eslint-disable */ +window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]); diff --git a/coverage/lcov-report/sort-arrow-sprite.png b/coverage/lcov-report/sort-arrow-sprite.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed68316eb3f65dec9063332d2f69bf3093bbfab GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^>_9Bd!3HEZxJ@+%Qh}Z>jv*C{$p!i!8j}?a+@3A= zIAGwzjijN=FBi!|L1t?LM;Q;gkwn>2cAy-KV{dn nf0J1DIvEHQu*n~6U}x}qyky7vi4|9XhBJ7&`njxgN@xNA8m%nc literal 0 HcmV?d00001 diff --git a/coverage/lcov-report/sorter.js b/coverage/lcov-report/sorter.js new file mode 100644 index 0000000000..4ed70ae5ac --- /dev/null +++ b/coverage/lcov-report/sorter.js @@ -0,0 +1,210 @@ +/* eslint-disable */ +var addSorting = (function() { + 'use strict'; + var cols, + currentSort = { + index: 0, + desc: false + }; + + // returns the summary table element + function getTable() { + return document.querySelector('.coverage-summary'); + } + // returns the thead element of the summary table + function getTableHeader() { + return getTable().querySelector('thead tr'); + } + // returns the tbody element of the summary table + function getTableBody() { + return getTable().querySelector('tbody'); + } + // returns the th element for nth column + function getNthColumn(n) { + return getTableHeader().querySelectorAll('th')[n]; + } + + function onFilterInput() { + const searchValue = document.getElementById('fileSearch').value; + const rows = document.getElementsByTagName('tbody')[0].children; + + // Try to create a RegExp from the searchValue. If it fails (invalid regex), + // it will be treated as a plain text search + let searchRegex; + try { + searchRegex = new RegExp(searchValue, 'i'); // 'i' for case-insensitive + } catch (error) { + searchRegex = null; + } + + for (let i = 0; i < rows.length; i++) { + const row = rows[i]; + let isMatch = false; + + if (searchRegex) { + // If a valid regex was created, use it for matching + isMatch = searchRegex.test(row.textContent); + } else { + // Otherwise, fall back to the original plain text search + isMatch = row.textContent + .toLowerCase() + .includes(searchValue.toLowerCase()); + } + + row.style.display = isMatch ? '' : 'none'; + } + } + + // loads the search box + function addSearchBox() { + var template = document.getElementById('filterTemplate'); + var templateClone = template.content.cloneNode(true); + templateClone.getElementById('fileSearch').oninput = onFilterInput; + template.parentElement.appendChild(templateClone); + } + + // loads all columns + function loadColumns() { + var colNodes = getTableHeader().querySelectorAll('th'), + colNode, + cols = [], + col, + i; + + for (i = 0; i < colNodes.length; i += 1) { + colNode = colNodes[i]; + col = { + key: colNode.getAttribute('data-col'), + sortable: !colNode.getAttribute('data-nosort'), + type: colNode.getAttribute('data-type') || 'string' + }; + cols.push(col); + if (col.sortable) { + col.defaultDescSort = col.type === 'number'; + colNode.innerHTML = + colNode.innerHTML + ''; + } + } + return cols; + } + // attaches a data attribute to every tr element with an object + // of data values keyed by column name + function loadRowData(tableRow) { + var tableCols = tableRow.querySelectorAll('td'), + colNode, + col, + data = {}, + i, + val; + for (i = 0; i < tableCols.length; i += 1) { + colNode = tableCols[i]; + col = cols[i]; + val = colNode.getAttribute('data-value'); + if (col.type === 'number') { + val = Number(val); + } + data[col.key] = val; + } + return data; + } + // loads all row data + function loadData() { + var rows = getTableBody().querySelectorAll('tr'), + i; + + for (i = 0; i < rows.length; i += 1) { + rows[i].data = loadRowData(rows[i]); + } + } + // sorts the table using the data for the ith column + function sortByIndex(index, desc) { + var key = cols[index].key, + sorter = function(a, b) { + a = a.data[key]; + b = b.data[key]; + return a < b ? -1 : a > b ? 1 : 0; + }, + finalSorter = sorter, + tableBody = document.querySelector('.coverage-summary tbody'), + rowNodes = tableBody.querySelectorAll('tr'), + rows = [], + i; + + if (desc) { + finalSorter = function(a, b) { + return -1 * sorter(a, b); + }; + } + + for (i = 0; i < rowNodes.length; i += 1) { + rows.push(rowNodes[i]); + tableBody.removeChild(rowNodes[i]); + } + + rows.sort(finalSorter); + + for (i = 0; i < rows.length; i += 1) { + tableBody.appendChild(rows[i]); + } + } + // removes sort indicators for current column being sorted + function removeSortIndicators() { + var col = getNthColumn(currentSort.index), + cls = col.className; + + cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); + col.className = cls; + } + // adds sort indicators for current column being sorted + function addSortIndicators() { + getNthColumn(currentSort.index).className += currentSort.desc + ? ' sorted-desc' + : ' sorted'; + } + // adds event listeners for all sorter widgets + function enableUI() { + var i, + el, + ithSorter = function ithSorter(i) { + var col = cols[i]; + + return function() { + var desc = col.defaultDescSort; + + if (currentSort.index === i) { + desc = !currentSort.desc; + } + sortByIndex(i, desc); + removeSortIndicators(); + currentSort.index = i; + currentSort.desc = desc; + addSortIndicators(); + }; + }; + for (i = 0; i < cols.length; i += 1) { + if (cols[i].sortable) { + // add the click event handler on the th so users + // dont have to click on those tiny arrows + el = getNthColumn(i).querySelector('.sorter').parentElement; + if (el.addEventListener) { + el.addEventListener('click', ithSorter(i)); + } else { + el.attachEvent('onclick', ithSorter(i)); + } + } + } + } + // adds sorting functionality to the UI + return function() { + if (!getTable()) { + return; + } + cols = loadColumns(); + loadData(); + addSearchBox(); + addSortIndicators(); + enableUI(); + }; +})(); + +window.addEventListener('load', addSorting); diff --git a/coverage/lcov.info b/coverage/lcov.info new file mode 100644 index 0000000000..304b53d21b --- /dev/null +++ b/coverage/lcov.info @@ -0,0 +1,197 @@ +TN: +SF:Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js +FN:17,getAngleType +FN:51,assertEquals +FNF:2 +FNH:2 +FNDA:24,getAngleType +FNDA:10,assertEquals +DA:19,24 +DA:21,5 +DA:23,19 +DA:25,2 +DA:27,17 +DA:29,4 +DA:31,13 +DA:33,3 +DA:35,10 +DA:37,4 +DA:41,6 +DA:47,1 +DA:52,10 +DA:60,1 +DA:61,1 +DA:63,1 +DA:64,1 +DA:66,1 +DA:67,1 +DA:69,1 +DA:70,1 +DA:72,1 +DA:73,1 +DA:75,1 +DA:76,1 +DA:78,1 +DA:79,1 +DA:81,1 +DA:82,1 +DA:84,1 +DA:85,1 +DA:87,1 +DA:88,1 +LF:33 +LH:33 +BRDA:19,0,0,5 +BRDA:19,0,1,19 +BRDA:19,1,0,24 +BRDA:19,1,1,21 +BRDA:23,2,0,2 +BRDA:23,2,1,17 +BRDA:27,3,0,4 +BRDA:27,3,1,13 +BRDA:27,4,0,17 +BRDA:27,4,1,14 +BRDA:31,5,0,3 +BRDA:31,5,1,10 +BRDA:35,6,0,4 +BRDA:35,6,1,6 +BRDA:35,7,0,10 +BRDA:35,7,1,7 +BRF:16 +BRH:16 +end_of_record +TN: +SF:Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js +FN:13,isProperFraction +FN:30,assertEquals +FNF:2 +FNH:2 +FNDA:16,isProperFraction +FNDA:7,assertEquals +DA:15,16 +DA:16,16 +DA:17,16 +DA:19,6 +DA:22,10 +DA:27,1 +DA:31,7 +DA:41,1 +DA:43,1 +DA:44,1 +DA:45,1 +DA:46,1 +DA:47,1 +DA:48,1 +LF:14 +LH:14 +BRDA:17,0,0,6 +BRDA:17,0,1,10 +BRF:2 +BRH:2 +end_of_record +TN: +SF:Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js +FN:24,getCardValue +FN:57,assertEquals +FNF:2 +FNH:2 +FNDA:27,getCardValue +FNDA:7,assertEquals +DA:26,27 +DA:27,27 +DA:28,27 +DA:31,27 +DA:32,6 +DA:35,21 +DA:37,21 +DA:38,1 +DA:42,20 +DA:43,8 +DA:46,12 +DA:47,12 +DA:48,12 +DA:54,1 +DA:58,7 +DA:66,1 +DA:68,1 +DA:69,1 +DA:72,1 +DA:73,1 +DA:74,1 +DA:75,1 +DA:77,1 +DA:78,1 +DA:81,0 +DA:83,1 +LF:26 +LH:25 +BRDA:31,0,0,6 +BRDA:31,0,1,21 +BRDA:37,1,0,1 +BRDA:37,1,1,20 +BRDA:37,2,0,21 +BRDA:37,2,1,13 +BRDA:37,2,2,12 +BRDA:42,3,0,8 +BRDA:42,3,1,12 +BRDA:47,4,0,12 +BRDA:47,4,1,0 +BRDA:47,5,0,12 +BRDA:47,5,1,12 +BRF:13 +BRH:12 +end_of_record +TN: +SF:Sprint-3/2-practice-tdd/count.js +FN:1,countChar +FNF:1 +FNH:1 +FNDA:1,countChar +DA:2,1 +DA:5,1 +LF:2 +LH:2 +BRF:0 +BRH:0 +end_of_record +TN: +SF:Sprint-3/2-practice-tdd/get-ordinal-number.js +FN:1,getOrdinalNumber +FNF:1 +FNH:1 +FNDA:2,getOrdinalNumber +DA:2,2 +DA:5,1 +LF:2 +LH:2 +BRF:0 +BRH:0 +end_of_record +TN: +SF:Sprint-3/2-practice-tdd/repeat-str.js +FN:1,repeatStr +FNF:1 +FNH:1 +FNDA:1,repeatStr +DA:4,1 +DA:7,1 +LF:2 +LH:2 +BRF:0 +BRH:0 +end_of_record +TN: +SF:Sprint-3/4-stretch/password-validator.js +FN:1,passwordValidator +FNF:1 +FNH:1 +FNDA:1,passwordValidator +DA:2,1 +DA:6,1 +LF:2 +LH:2 +BRDA:2,0,0,0 +BRDA:2,0,1,1 +BRF:2 +BRH:1 +end_of_record From 3c016e7c28197422487fb7449cde892d2a2febe0 Mon Sep 17 00:00:00 2001 From: Dagim-Daniel Date: Mon, 6 Jul 2026 19:53:34 +0100 Subject: [PATCH 6/7] Revert "Sprint 3 implement and rewrite-test with jest is done, i modified get-card-value adding line 37 to line 40 and i also completed the rewrite-test with jest section - i revert a commit so i work on it again and re- commit it( problem was the jest edited the jason file -version)" This reverts commit 927466a0ea5ac32234409e55f9a0ee3ab27ac92e. --- .../implement/3-get-card-value.js | 5 - .../1-get-angle-type.test.js | 30 -- .../2-is-proper-fraction.test.js | 16 - .../3-get-card-value.test.js | 26 -- coverage/clover.xml | 117 ------ coverage/coverage-final.json | 8 - .../implement/1-get-angle-type.js.html | 346 ------------------ .../implement/2-is-proper-fraction.js.html | 226 ------------ .../implement/3-get-card-value.js.html | 343 ----------------- .../implement/index.html | 146 -------- .../lcov-report/2-practice-tdd/count.js.html | 100 ----- .../2-practice-tdd/get-ordinal-number.js.html | 100 ----- .../lcov-report/2-practice-tdd/index.html | 146 -------- .../2-practice-tdd/repeat-str.js.html | 106 ------ coverage/lcov-report/4-stretch/index.html | 116 ------ .../4-stretch/password-validator.js.html | 100 ----- coverage/lcov-report/base.css | 224 ------------ coverage/lcov-report/block-navigation.js | 87 ----- coverage/lcov-report/favicon.png | Bin 445 -> 0 bytes coverage/lcov-report/index.html | 146 -------- coverage/lcov-report/prettify.css | 1 - coverage/lcov-report/prettify.js | 2 - coverage/lcov-report/sort-arrow-sprite.png | Bin 138 -> 0 bytes coverage/lcov-report/sorter.js | 210 ----------- coverage/lcov.info | 197 ---------- 25 files changed, 2798 deletions(-) delete mode 100644 coverage/clover.xml delete mode 100644 coverage/coverage-final.json delete mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html delete mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html delete mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html delete mode 100644 coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html delete mode 100644 coverage/lcov-report/2-practice-tdd/count.js.html delete mode 100644 coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html delete mode 100644 coverage/lcov-report/2-practice-tdd/index.html delete mode 100644 coverage/lcov-report/2-practice-tdd/repeat-str.js.html delete mode 100644 coverage/lcov-report/4-stretch/index.html delete mode 100644 coverage/lcov-report/4-stretch/password-validator.js.html delete mode 100644 coverage/lcov-report/base.css delete mode 100644 coverage/lcov-report/block-navigation.js delete mode 100644 coverage/lcov-report/favicon.png delete mode 100644 coverage/lcov-report/index.html delete mode 100644 coverage/lcov-report/prettify.css delete mode 100644 coverage/lcov-report/prettify.js delete mode 100644 coverage/lcov-report/sort-arrow-sprite.png delete mode 100644 coverage/lcov-report/sorter.js delete mode 100644 coverage/lcov.info diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js index a33bfc21ba..364fe0c5b6 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js @@ -34,11 +34,6 @@ function getCardValue(card) { const faceCardValues = {'A': 11, 'J': 10, 'Q': 10, 'K': 10}; - if(faceCardValues[value] === undefined && (Number(value) < 2 || Number(value) > 10)) { - throw new Error("Invalid card"); - } - - if (faceCardValues[value] !== undefined) { return faceCardValues[value]; } diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js index 320f412274..d777f348d3 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js @@ -14,37 +14,7 @@ test(`should return "Acute angle" when (0 < angle < 90)`, () => { }); // Case 2: Right angle -test(`should return "Right angle" when (Angle ===90)`, () => { - // Test various acute angles, including boundary cases - expect(getAngleType(90)).toEqual("Right angle"); - -}); - // Case 3: Obtuse angles -test(`should return "Obtuse angle" when ( 90 < angle < 180)`, () => { - // Test various acute angles, including boundary cases - expect(getAngleType(91)).toEqual("Obtuse angle"); - expect(getAngleType(125)).toEqual("Obtuse angle"); - expect(getAngleType(179)).toEqual("Obtuse angle"); -}); - // Case 4: Straight angle -test(`should return "Straight angle" when (angle === 180)`, () => { - // Test various acute angles, including boundary cases - expect(getAngleType(180)).toEqual("Straight angle"); -}); // Case 5: Reflex angles -test(`should return "Reflex angle" when (180 < angle < 360)`, () => { - // Test various reflex angles, including boundary cases - expect(getAngleType(181)).toEqual("Reflex angle"); - expect(getAngleType(270)).toEqual("Reflex angle"); - expect(getAngleType(359)).toEqual("Reflex angle"); -}); // Case 6: Invalid angles -test(`should return "Invalid angle" when (angle < 0 || angle > 360)`, () => { - // Test various invalid angles - expect(getAngleType(-1)).toEqual("Invalid angle"); - expect(getAngleType(361)).toEqual("Invalid angle"); - expect(getAngleType(0)).toEqual("Invalid angle"); -}); - diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js index be88c2f88b..7f087b2ba1 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js @@ -3,24 +3,8 @@ const isProperFraction = require("../implement/2-is-proper-fraction"); // TODO: Write tests in Jest syntax to cover all combinations of positives, negatives, zeros, and other categories. -test(`should return True when denominator is positive and less than numerator`, () => { - expect(isProperFraction(1, 2)).toEqual(true); - expect(isProperFraction(-1, 2)).toEqual(true ); - expect(isProperFraction(1, 10)).toEqual(true); -}); - -test(`should return false when denominator is less than numerator`, () => { - expect(isProperFraction(22, 20)).toEqual(false); - expect(isProperFraction(11, 10)).toEqual(false); -}); - -test(`should return false when denominator and numerator are equal`, () => { - expect(isProperFraction(1, 1)).toEqual(false); - expect(isProperFraction(-1, -1)).toEqual(false); -}); // Special case: numerator is zero test(`should return false when denominator is zero`, () => { expect(isProperFraction(1, 0)).toEqual(false); - expect(isProperFraction(-1, 0)).toEqual(false); }); diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js index e24d5902c3..cf7f9dae2e 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js @@ -11,34 +11,8 @@ test(`Should return 11 when given an ace card`, () => { // Suggestion: Group the remaining test data into these categories: // Number Cards (2-10) -test(`Should return 10 when given a number card`, () => { - expect(getCardValue("2♠")).toEqual(2); - expect(getCardValue("3♦")).toEqual(3); - expect(getCardValue("4♣")).toEqual(4); - expect(getCardValue("5♠")).toEqual(5); - expect(getCardValue("6♦")).toEqual(6); - expect(getCardValue("7♣")).toEqual(7); - expect(getCardValue("8♠")).toEqual(8); - expect(getCardValue("9♦")).toEqual(9); - expect(getCardValue("10♣")).toEqual(10); -}); // Face Cards (J, Q, K) -test(`Should return 10 when given a number card`, () => { - expect(getCardValue("K♠")).toEqual(10); - expect(getCardValue("q♦")).toEqual(10); - expect(getCardValue("J♣")).toEqual(10); -}); - // Invalid Cards -test(`Should return Invalid Cards when given invalid inputs`, () => { - expect(() => getCardValue("")).toThrow(); - expect(() => getCardValue("11")).toThrow(); - expect(() => getCardValue("♠10")).toThrow(); - expect(() => getCardValue("invalid")).toThrow(); - expect(() => getCardValue("1♠")).toThrow(); - expect(() => getCardValue("ab")).toThrow(); - -}); // To learn how to test whether a function throws an error as expected in Jest, // please refer to the Jest documentation: diff --git a/coverage/clover.xml b/coverage/clover.xml deleted file mode 100644 index a7dd99346b..0000000000 --- a/coverage/clover.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/coverage/coverage-final.json b/coverage/coverage-final.json deleted file mode 100644 index 3d46e5e059..0000000000 --- a/coverage/coverage-final.json +++ /dev/null @@ -1,8 +0,0 @@ -{"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js","statementMap":{"0":{"start":{"line":19,"column":2},"end":{"line":42,"column":3}},"1":{"start":{"line":21,"column":0},"end":{"line":21,"column":21}},"2":{"start":{"line":23,"column":6},"end":{"line":42,"column":3}},"3":{"start":{"line":25,"column":1},"end":{"line":25,"column":22}},"4":{"start":{"line":27,"column":7},"end":{"line":42,"column":3}},"5":{"start":{"line":29,"column":4},"end":{"line":29,"column":26}},"6":{"start":{"line":31,"column":7},"end":{"line":42,"column":3}},"7":{"start":{"line":33,"column":4},"end":{"line":33,"column":28}},"8":{"start":{"line":35,"column":7},"end":{"line":42,"column":3}},"9":{"start":{"line":37,"column":4},"end":{"line":37,"column":26}},"10":{"start":{"line":41,"column":2},"end":{"line":41,"column":25}},"11":{"start":{"line":47,"column":0},"end":{"line":47,"column":30}},"12":{"start":{"line":52,"column":2},"end":{"line":55,"column":4}},"13":{"start":{"line":60,"column":14},"end":{"line":60,"column":30}},"14":{"start":{"line":61,"column":0},"end":{"line":61,"column":35}},"15":{"start":{"line":63,"column":14},"end":{"line":63,"column":29}},"16":{"start":{"line":64,"column":0},"end":{"line":64,"column":34}},"17":{"start":{"line":66,"column":15},"end":{"line":66,"column":33}},"18":{"start":{"line":67,"column":0},"end":{"line":67,"column":36}},"19":{"start":{"line":69,"column":17},"end":{"line":69,"column":34}},"20":{"start":{"line":70,"column":0},"end":{"line":70,"column":40}},"21":{"start":{"line":72,"column":15},"end":{"line":72,"column":34}},"22":{"start":{"line":73,"column":0},"end":{"line":73,"column":36}},"23":{"start":{"line":75,"column":16},"end":{"line":75,"column":33}},"24":{"start":{"line":76,"column":0},"end":{"line":76,"column":38}},"25":{"start":{"line":78,"column":18},"end":{"line":78,"column":35}},"26":{"start":{"line":79,"column":0},"end":{"line":79,"column":41}},"27":{"start":{"line":81,"column":17},"end":{"line":81,"column":34}},"28":{"start":{"line":82,"column":0},"end":{"line":82,"column":39}},"29":{"start":{"line":84,"column":15},"end":{"line":84,"column":32}},"30":{"start":{"line":85,"column":0},"end":{"line":85,"column":35}},"31":{"start":{"line":87,"column":17},"end":{"line":87,"column":32}},"32":{"start":{"line":88,"column":0},"end":{"line":88,"column":39}}},"fnMap":{"0":{"name":"getAngleType","decl":{"start":{"line":17,"column":9},"end":{"line":17,"column":21}},"loc":{"start":{"line":17,"column":29},"end":{"line":43,"column":1}},"line":17},"1":{"name":"assertEquals","decl":{"start":{"line":51,"column":9},"end":{"line":51,"column":21}},"loc":{"start":{"line":51,"column":50},"end":{"line":56,"column":1}},"line":51}},"branchMap":{"0":{"loc":{"start":{"line":19,"column":2},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":19,"column":2},"end":{"line":42,"column":3}},{"start":{"line":23,"column":6},"end":{"line":42,"column":3}}],"line":19},"1":{"loc":{"start":{"line":19,"column":6},"end":{"line":19,"column":25}},"type":"binary-expr","locations":[{"start":{"line":19,"column":6},"end":{"line":19,"column":13}},{"start":{"line":19,"column":17},"end":{"line":19,"column":25}}],"line":19},"2":{"loc":{"start":{"line":23,"column":6},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":23,"column":6},"end":{"line":42,"column":3}},{"start":{"line":27,"column":7},"end":{"line":42,"column":3}}],"line":23},"3":{"loc":{"start":{"line":27,"column":7},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":27,"column":7},"end":{"line":42,"column":3}},{"start":{"line":31,"column":7},"end":{"line":42,"column":3}}],"line":27},"4":{"loc":{"start":{"line":27,"column":11},"end":{"line":27,"column":32}},"type":"binary-expr","locations":[{"start":{"line":27,"column":11},"end":{"line":27,"column":19}},{"start":{"line":27,"column":23},"end":{"line":27,"column":32}}],"line":27},"5":{"loc":{"start":{"line":31,"column":7},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":31,"column":7},"end":{"line":42,"column":3}},{"start":{"line":35,"column":7},"end":{"line":42,"column":3}}],"line":31},"6":{"loc":{"start":{"line":35,"column":7},"end":{"line":42,"column":3}},"type":"if","locations":[{"start":{"line":35,"column":7},"end":{"line":42,"column":3}},{"start":{"line":40,"column":4},"end":{"line":42,"column":3}}],"line":35},"7":{"loc":{"start":{"line":35,"column":11},"end":{"line":35,"column":33}},"type":"binary-expr","locations":[{"start":{"line":35,"column":11},"end":{"line":35,"column":20}},{"start":{"line":35,"column":24},"end":{"line":35,"column":33}}],"line":35}},"s":{"0":24,"1":5,"2":19,"3":2,"4":17,"5":4,"6":13,"7":3,"8":10,"9":4,"10":6,"11":1,"12":10,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1},"f":{"0":24,"1":10},"b":{"0":[5,19],"1":[24,21],"2":[2,17],"3":[4,13],"4":[17,14],"5":[3,10],"6":[4,6],"7":[10,7]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"2c72c99b6a06f5d214d433f6778261cfd4c62f61"} -,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js","statementMap":{"0":{"start":{"line":15,"column":2},"end":{"line":15,"column":34}},"1":{"start":{"line":16,"column":2},"end":{"line":16,"column":38}},"2":{"start":{"line":17,"column":2},"end":{"line":22,"column":17}},"3":{"start":{"line":19,"column":4},"end":{"line":19,"column":16}},"4":{"start":{"line":22,"column":4},"end":{"line":22,"column":17}},"5":{"start":{"line":27,"column":0},"end":{"line":27,"column":34}},"6":{"start":{"line":31,"column":2},"end":{"line":34,"column":4}},"7":{"start":{"line":41,"column":0},"end":{"line":41,"column":43}},"8":{"start":{"line":43,"column":0},"end":{"line":43,"column":42}},"9":{"start":{"line":44,"column":0},"end":{"line":44,"column":49}},"10":{"start":{"line":45,"column":0},"end":{"line":45,"column":42}},"11":{"start":{"line":46,"column":0},"end":{"line":46,"column":45}},"12":{"start":{"line":47,"column":0},"end":{"line":47,"column":44}},"13":{"start":{"line":48,"column":0},"end":{"line":48,"column":44}}},"fnMap":{"0":{"name":"isProperFraction","decl":{"start":{"line":13,"column":9},"end":{"line":13,"column":25}},"loc":{"start":{"line":13,"column":50},"end":{"line":23,"column":1}},"line":13},"1":{"name":"assertEquals","decl":{"start":{"line":30,"column":9},"end":{"line":30,"column":21}},"loc":{"start":{"line":30,"column":50},"end":{"line":35,"column":1}},"line":30}},"branchMap":{"0":{"loc":{"start":{"line":17,"column":2},"end":{"line":22,"column":17}},"type":"if","locations":[{"start":{"line":17,"column":2},"end":{"line":22,"column":17}},{"start":{"line":22,"column":4},"end":{"line":22,"column":17}}],"line":17}},"s":{"0":16,"1":16,"2":16,"3":6,"4":10,"5":1,"6":7,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1},"f":{"0":16,"1":7},"b":{"0":[6,10]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"c6252d0c37e0ffade0e2ddee52b0384bc60eb58e"} -,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js","statementMap":{"0":{"start":{"line":26,"column":17},"end":{"line":26,"column":48}},"1":{"start":{"line":27,"column":21},"end":{"line":27,"column":41}},"2":{"start":{"line":28,"column":15},"end":{"line":28,"column":29}},"3":{"start":{"line":31,"column":2},"end":{"line":33,"column":3}},"4":{"start":{"line":32,"column":4},"end":{"line":32,"column":36}},"5":{"start":{"line":35,"column":25},"end":{"line":35,"column":61}},"6":{"start":{"line":37,"column":2},"end":{"line":39,"column":3}},"7":{"start":{"line":38,"column":4},"end":{"line":38,"column":36}},"8":{"start":{"line":42,"column":2},"end":{"line":44,"column":3}},"9":{"start":{"line":43,"column":4},"end":{"line":43,"column":33}},"10":{"start":{"line":46,"column":19},"end":{"line":46,"column":32}},"11":{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},"12":{"start":{"line":48,"column":4},"end":{"line":48,"column":20}},"13":{"start":{"line":54,"column":0},"end":{"line":54,"column":30}},"14":{"start":{"line":58,"column":2},"end":{"line":61,"column":4}},"15":{"start":{"line":66,"column":0},"end":{"line":66,"column":36}},"16":{"start":{"line":68,"column":0},"end":{"line":68,"column":36}},"17":{"start":{"line":69,"column":0},"end":{"line":69,"column":37}},"18":{"start":{"line":72,"column":0},"end":{"line":72,"column":36}},"19":{"start":{"line":73,"column":0},"end":{"line":73,"column":37}},"20":{"start":{"line":74,"column":0},"end":{"line":74,"column":37}},"21":{"start":{"line":75,"column":0},"end":{"line":75,"column":37}},"22":{"start":{"line":77,"column":0},"end":{"line":84,"column":1}},"23":{"start":{"line":78,"column":2},"end":{"line":78,"column":26}},"24":{"start":{"line":81,"column":2},"end":{"line":81,"column":60}},"25":{"start":{"line":83,"column":2},"end":{"line":83,"column":50}}},"fnMap":{"0":{"name":"getCardValue","decl":{"start":{"line":24,"column":9},"end":{"line":24,"column":21}},"loc":{"start":{"line":24,"column":28},"end":{"line":50,"column":1}},"line":24},"1":{"name":"assertEquals","decl":{"start":{"line":57,"column":9},"end":{"line":57,"column":21}},"loc":{"start":{"line":57,"column":50},"end":{"line":62,"column":1}},"line":57}},"branchMap":{"0":{"loc":{"start":{"line":31,"column":2},"end":{"line":33,"column":3}},"type":"if","locations":[{"start":{"line":31,"column":2},"end":{"line":33,"column":3}},{"start":{},"end":{}}],"line":31},"1":{"loc":{"start":{"line":37,"column":2},"end":{"line":39,"column":3}},"type":"if","locations":[{"start":{"line":37,"column":2},"end":{"line":39,"column":3}},{"start":{},"end":{}}],"line":37},"2":{"loc":{"start":{"line":37,"column":5},"end":{"line":37,"column":85}},"type":"binary-expr","locations":[{"start":{"line":37,"column":5},"end":{"line":37,"column":40}},{"start":{"line":37,"column":45},"end":{"line":37,"column":62}},{"start":{"line":37,"column":66},"end":{"line":37,"column":84}}],"line":37},"3":{"loc":{"start":{"line":42,"column":2},"end":{"line":44,"column":3}},"type":"if","locations":[{"start":{"line":42,"column":2},"end":{"line":44,"column":3}},{"start":{},"end":{}}],"line":42},"4":{"loc":{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},"type":"if","locations":[{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},{"start":{},"end":{}}],"line":47},"5":{"loc":{"start":{"line":47,"column":6},"end":{"line":47,"column":37}},"type":"binary-expr","locations":[{"start":{"line":47,"column":6},"end":{"line":47,"column":19}},{"start":{"line":47,"column":23},"end":{"line":47,"column":37}}],"line":47}},"s":{"0":27,"1":27,"2":27,"3":27,"4":6,"5":21,"6":21,"7":1,"8":20,"9":8,"10":12,"11":12,"12":12,"13":1,"14":7,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":0,"25":1},"f":{"0":27,"1":7},"b":{"0":[6,21],"1":[1,20],"2":[21,13,12],"3":[8,12],"4":[12,0],"5":[12,12]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"230171526e3b77dbbd12fcfb362334dabe9d7fe8"} -,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/count.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/count.js","statementMap":{"0":{"start":{"line":2,"column":2},"end":{"line":2,"column":10}},"1":{"start":{"line":5,"column":0},"end":{"line":5,"column":27}}},"fnMap":{"0":{"name":"countChar","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":18}},"loc":{"start":{"line":1,"column":54},"end":{"line":3,"column":1}},"line":1}},"branchMap":{},"s":{"0":1,"1":1},"f":{"0":1},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"bff5e3d3ac763266e494e6ca93abc24a7547a1c3"} -,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/get-ordinal-number.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/get-ordinal-number.js","statementMap":{"0":{"start":{"line":2,"column":2},"end":{"line":2,"column":15}},"1":{"start":{"line":5,"column":0},"end":{"line":5,"column":34}}},"fnMap":{"0":{"name":"getOrdinalNumber","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":25}},"loc":{"start":{"line":1,"column":31},"end":{"line":3,"column":1}},"line":1}},"branchMap":{},"s":{"0":2,"1":1},"f":{"0":2},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"95902a97a1b90aa6aad303d0b9ea7192caada70f"} -,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/repeat-str.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/2-practice-tdd/repeat-str.js","statementMap":{"0":{"start":{"line":4,"column":2},"end":{"line":4,"column":27}},"1":{"start":{"line":7,"column":0},"end":{"line":7,"column":27}}},"fnMap":{"0":{"name":"repeatStr","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":18}},"loc":{"start":{"line":1,"column":21},"end":{"line":5,"column":1}},"line":1}},"branchMap":{},"s":{"0":1,"1":1},"f":{"0":1},"b":{},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"b726e0e4105ad64fa34dcbe092f2abf5cbf28499"} -,"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/4-stretch/password-validator.js": {"path":"/home/cyf/Documents/Dagim/prep/Module-Structuring-and-Testing-Data/Sprint-3/4-stretch/password-validator.js","statementMap":{"0":{"start":{"line":2,"column":4},"end":{"line":2,"column":45}},"1":{"start":{"line":6,"column":0},"end":{"line":6,"column":35}}},"fnMap":{"0":{"name":"passwordValidator","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":26}},"loc":{"start":{"line":1,"column":37},"end":{"line":3,"column":1}},"line":1}},"branchMap":{"0":{"loc":{"start":{"line":2,"column":11},"end":{"line":2,"column":45}},"type":"cond-expr","locations":[{"start":{"line":2,"column":33},"end":{"line":2,"column":38}},{"start":{"line":2,"column":41},"end":{"line":2,"column":45}}],"line":2}},"s":{"0":1,"1":1},"f":{"0":1},"b":{"0":[0,1]},"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"e76595f81b1a4903ce41125505bd2bfed9421035"} -} diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html deleted file mode 100644 index 51c6f3c817..0000000000 --- a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/1-get-angle-type.js.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - Code coverage report for 1-implement-and-rewrite-tests/implement/1-get-angle-type.js - - - - - - - - - -
-
-

All files / 1-implement-and-rewrite-tests/implement 1-get-angle-type.js

-
- -
- 100% - Statements - 33/33 -
- - -
- 100% - Branches - 16/16 -
- - -
- 100% - Functions - 2/2 -
- - -
- 100% - Lines - 33/33 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-

-
1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 -32 -33 -34 -35 -36 -37 -38 -39 -40 -41 -42 -43 -44 -45 -46 -47 -48 -49 -50 -51 -52 -53 -54 -55 -56 -57 -58 -59 -60 -61 -62 -63 -64 -65 -66 -67 -68 -69 -70 -71 -72 -73 -74 -75 -76 -77 -78 -79 -80 -81 -82 -83 -84 -85 -86 -87 -88  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -24x -  -5x -  -19x -  -2x -  -17x -  -4x -  -13x -  -3x -  -10x -  -4x -  -  -  -6x -  -  -  -  -  -1x -  -  -  -  -10x -  -  -  -  -  -  -  -1x -1x -  -1x -1x -  -1x -1x -  -1x -1x -  -1x -1x -  -1x -1x -  -1x -1x -  -1x -1x -  -1x -1x -  -1x -1x
// Implement a function getAngleType
-//
-// When given an angle in degrees, it should return a string indicating the type of angle:
-// - "Acute angle" for angles greater than 0° and less than 90°
-// - "Right angle" for exactly 90°
-// - "Obtuse angle" for angles greater than 90° and less than 180°
-// - "Straight angle" for exactly 180°
-// - "Reflex angle" for angles greater than 180° and less than 360°
-// - "Invalid angle" for angles outside the valid range.
- 
-// Assumption: The parameter is a valid number. (You do not need to handle non-numeric inputs.)
- 
-// Acceptance criteria:
-// After you have implemented the function, write tests to cover all the cases, and
-// execute the code to ensure all tests pass.
- 
-function getAngleType(angle) {
-  // TODO: Implement this function
-  if (angle>0 && angle<90)
-  {
-return "Acute angle";
-  }
- else if (angle==90)
-  {
- return "Right angle";   
-  }
-  else if (angle>90 && angle<180)
-  {
-    return "Obtuse angle";
-  }
-  else if (angle==180)
-  {
-    return "Straight angle";
-  }
-  else if (angle>180 && angle<360)
-  {
-    return "Reflex angle";
-  }
-  else
-    {
-  return "Invalid angle";
-  }
-}
- 
-// The line below allows us to load the getAngleType function into tests in other files.
-// This will be useful in the "rewrite tests with jest" step.
-module.exports = getAngleType;
- 
-// This helper function is written to make our assertions easier to read.
-// If the actual output matches the target output, the test will pass
-function assertEquals(actualOutput, targetOutput) {
-  console.assert(
-    actualOutput === targetOutput,
-    `Expected ${actualOutput} to equal ${targetOutput}`
-  );
-}
- 
-// TODO: Write tests to cover all cases, including boundary and invalid cases.
-// Example: Identify Right Angles
-const right = getAngleType(90);
-assertEquals(right, "Right angle");
- 
-const acute = getAngleType(1);
-assertEquals(acute,"Acute angle");
- 
-const obtuse = getAngleType(90.5);
-assertEquals(obtuse,"Obtuse angle");
- 
-const straight = getAngleType(180);
-assertEquals(straight,"Straight angle");
- 
-const reflex = getAngleType(359.9);
-assertEquals(reflex,"Reflex angle");
- 
-const invalid = getAngleType(380);
-assertEquals(invalid,"Invalid angle");
- 
-const straight2 = getAngleType(180);
-assertEquals(straight2,"Straight angle");
- 
-const invalid2 = getAngleType(360);
-assertEquals(invalid2,"Invalid angle");
- 
-const acute2 = getAngleType(0.1);
-assertEquals(acute2,"Acute angle");
- 
-const invalid3 = getAngleType(0);
-assertEquals(invalid3,"Invalid angle");
- -
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html deleted file mode 100644 index 3f4c467038..0000000000 --- a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - Code coverage report for 1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js - - - - - - - - - -
-
-

All files / 1-implement-and-rewrite-tests/implement 2-is-proper-fraction.js

-
- -
- 100% - Statements - 14/14 -
- - -
- 100% - Branches - 2/2 -
- - -
- 100% - Functions - 2/2 -
- - -
- 100% - Lines - 14/14 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-

-
1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 -32 -33 -34 -35 -36 -37 -38 -39 -40 -41 -42 -43 -44 -45 -46 -47 -48  -  -  -  -  -  -  -  -  -  -  -  -  -  -16x -16x -16x -  -6x -  -  -10x -  -  -  -  -1x -  -  -  -7x -  -  -  -  -  -  -  -  -  -1x -  -1x -1x -1x -1x -1x -1x
// Implement a function isProperFraction,
-// when given two numbers, a numerator and a denominator, it should return true if
-// the given numbers form a proper fraction, and false otherwise.
- 
-// Assumption: The parameters are valid numbers (not NaN or Infinity).
- 
-// Note: If you are unfamiliar with proper fractions, please look up its mathematical definition.
- 
-// Acceptance criteria:
-// After you have implemented the function, write tests to cover all the cases, and
-// execute the code to ensure all tests pass.
- 
-function isProperFraction(numerator, denominator) {
-  // TODO: Implement this function
-  numerator = Math.abs(numerator);
-  denominator = Math.abs(denominator);
-  if (numerator<denominator)
-  {
-    return true;
-  }
-  else
-    return false;
-}
- 
-// The line below allows us to load the isProperFraction function into tests in other files.
-// This will be useful in the "rewrite tests with jest" step.
-module.exports = isProperFraction;
- 
-// Here's our helper again
-function assertEquals(actualOutput, targetOutput) {
-  console.assert(
-    actualOutput === targetOutput,
-    `Expected ${actualOutput} to equal ${targetOutput}`
-  );
-}
- 
-// TODO: Write tests to cover all cases.
-// What combinations of numerators and denominators should you test?
- 
-// Example: 1/2 is a proper fraction.
-assertEquals(isProperFraction(1, 2), true);
- 
-assertEquals(isProperFraction(1,1),false);
-assertEquals(isProperFraction(40234,98543),true);
-assertEquals(isProperFraction(2,1),false);
-assertEquals(isProperFraction(-10,-1),false);
-assertEquals(isProperFraction(-1,-10),true);
-assertEquals(isProperFraction(1.5,1),false);
- -
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html deleted file mode 100644 index 77e0683150..0000000000 --- a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/3-get-card-value.js.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - Code coverage report for 1-implement-and-rewrite-tests/implement/3-get-card-value.js - - - - - - - - - -
-
-

All files / 1-implement-and-rewrite-tests/implement 3-get-card-value.js

-
- -
- 96.15% - Statements - 25/26 -
- - -
- 92.3% - Branches - 12/13 -
- - -
- 100% - Functions - 2/2 -
- - -
- 96.15% - Lines - 25/26 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-

-
1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 -32 -33 -34 -35 -36 -37 -38 -39 -40 -41 -42 -43 -44 -45 -46 -47 -48 -49 -50 -51 -52 -53 -54 -55 -56 -57 -58 -59 -60 -61 -62 -63 -64 -65 -66 -67 -68 -69 -70 -71 -72 -73 -74 -75 -76 -77 -78 -79 -80 -81 -82 -83 -84 -85 -86 -87  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -27x -27x -27x -  -  -27x -6x -  -  -21x -  -21x -1x -  -  -  -20x -8x -  -  -12x -12x -12x -  -  -  -  -  -1x -  -  -  -7x -  -  -  -  -  -  -  -1x -  -1x -1x -  -  -1x -1x -1x -1x -  -1x -1x -  -  -  -  -1x -  -  -  - 
// This problem involves playing cards: https://en.wikipedia.org/wiki/Standard_52-card_deck
- 
-// Implement a function getCardValue, when given a string representing a playing card,
-// should return the numerical value of the card.
- 
-// A valid card string will contain a rank followed by the suit.
-// The rank can be one of the following strings:
-//   "A", "2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K"
-// The suit can be one of the following emojis:
-//   "♠", "♥", "♦", "♣"
-// For example: "A♠", "2♥", "10♥", "J♣", "Q♦", "K♦".
- 
-// When the card is an ace ("A"), the function should return 11.
-// When the card is a face card ("J", "Q", "K"), the function should return 10.
-// When the card is a number card ("2" to "10"), the function should return its numeric value.
- 
-// When the card string is invalid (not following the above format), the function should
-// throw an error.
- 
-// Acceptance criteria:
-// After you have implemented the function, write tests to cover all the cases, and
-// execute the code to ensure all tests pass.
- 
-function getCardValue(card) {
-  // TODO: Implement this function
-   const value = card.slice(0, -1).toUpperCase();
-  const validSuits = "♠,♥,♦,♣".split(",");
-  const suit = card.slice(-1);
- 
- 
-  if(!validSuits.includes(suit)) {
-    throw new Error("Invalid card");
-  }
- 
-  const faceCardValues = {'A': 11, 'J': 10, 'Q': 10, 'K': 10};
- 
-  if(faceCardValues[value] === undefined && (Number(value) < 2 || Number(value) > 10)) {
-    throw new Error("Invalid card");
-  }
- 
- 
-  if (faceCardValues[value] !== undefined) {
-    return faceCardValues[value];
-  } 
- 
-  const numvalue = Number(value);
-  Eif (numvalue >= 2 && numvalue <= 10) {
-    return numvalue;
-  }
-}
- 
-// The line below allows us to load the getCardValue function into tests in other files.
-// This will be useful in the "rewrite tests with jest" step.
-module.exports = getCardValue;
- 
-// Helper functions to make our assertions easier to read.
-function assertEquals(actualOutput, targetOutput) {
-  console.assert(
-    actualOutput === targetOutput,
-    `Expected ${actualOutput} to equal ${targetOutput}`
-  );
-}
- 
-// TODO: Write tests to cover all outcomes, including throwing errors for invalid cards.
-// Examples:
-assertEquals(getCardValue("9♠"), 9);
- 
-assertEquals(getCardValue("A♥"),11);
-assertEquals(getCardValue("10♠"),10);
- 
- 
-assertEquals(getCardValue("2♠"), 2);
-assertEquals(getCardValue("K♠"), 10);
-assertEquals(getCardValue("q♦"), 10);
-assertEquals(getCardValue("J♣"), 10);
-// Handling invalid cards
-try {
-  getCardValue("invalid");
- 
-  // This line will not be reached if an error is thrown as expected
-  console.error("Error was not thrown for invalid card 😢");
-} catch (e) {
-  console.log("Error thrown for invalid card 🎉");
-}
- 
-// What other invalid card cases can you think of?
- 
- -
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html b/coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html deleted file mode 100644 index d968bcc6e9..0000000000 --- a/coverage/lcov-report/1-implement-and-rewrite-tests/implement/index.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - Code coverage report for 1-implement-and-rewrite-tests/implement - - - - - - - - - -
-
-

All files 1-implement-and-rewrite-tests/implement

-
- -
- 98.63% - Statements - 72/73 -
- - -
- 96.77% - Branches - 30/31 -
- - -
- 100% - Functions - 6/6 -
- - -
- 98.63% - Lines - 72/73 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileStatementsBranchesFunctionsLines
1-get-angle-type.js -
-
100%33/33100%16/16100%2/2100%33/33
2-is-proper-fraction.js -
-
100%14/14100%2/2100%2/2100%14/14
3-get-card-value.js -
-
96.15%25/2692.3%12/13100%2/296.15%25/26
-
-
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/count.js.html b/coverage/lcov-report/2-practice-tdd/count.js.html deleted file mode 100644 index 6533fd831b..0000000000 --- a/coverage/lcov-report/2-practice-tdd/count.js.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - Code coverage report for 2-practice-tdd/count.js - - - - - - - - - -
-
-

All files / 2-practice-tdd count.js

-
- -
- 100% - Statements - 2/2 -
- - -
- 100% - Branches - 0/0 -
- - -
- 100% - Functions - 1/1 -
- - -
- 100% - Lines - 2/2 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-

-
1 -2 -3 -4 -5 -6  -1x -  -  -1x - 
function countChar(stringOfCharacters, findCharacter) {
-  return 5
-}
- 
-module.exports = countChar;
- 
- -
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html b/coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html deleted file mode 100644 index 70939185a9..0000000000 --- a/coverage/lcov-report/2-practice-tdd/get-ordinal-number.js.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - Code coverage report for 2-practice-tdd/get-ordinal-number.js - - - - - - - - - -
-
-

All files / 2-practice-tdd get-ordinal-number.js

-
- -
- 100% - Statements - 2/2 -
- - -
- 100% - Branches - 0/0 -
- - -
- 100% - Functions - 1/1 -
- - -
- 100% - Lines - 2/2 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-

-
1 -2 -3 -4 -5 -6  -2x -  -  -1x - 
function getOrdinalNumber(num) {
-  return "1st";
-}
- 
-module.exports = getOrdinalNumber;
- 
- -
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/index.html b/coverage/lcov-report/2-practice-tdd/index.html deleted file mode 100644 index d3b778cc26..0000000000 --- a/coverage/lcov-report/2-practice-tdd/index.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - Code coverage report for 2-practice-tdd - - - - - - - - - -
-
-

All files 2-practice-tdd

-
- -
- 100% - Statements - 6/6 -
- - -
- 100% - Branches - 0/0 -
- - -
- 100% - Functions - 3/3 -
- - -
- 100% - Lines - 6/6 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileStatementsBranchesFunctionsLines
count.js -
-
100%2/2100%0/0100%1/1100%2/2
get-ordinal-number.js -
-
100%2/2100%0/0100%1/1100%2/2
repeat-str.js -
-
100%2/2100%0/0100%1/1100%2/2
-
-
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/2-practice-tdd/repeat-str.js.html b/coverage/lcov-report/2-practice-tdd/repeat-str.js.html deleted file mode 100644 index f479c73cd2..0000000000 --- a/coverage/lcov-report/2-practice-tdd/repeat-str.js.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - Code coverage report for 2-practice-tdd/repeat-str.js - - - - - - - - - -
-
-

All files / 2-practice-tdd repeat-str.js

-
- -
- 100% - Statements - 2/2 -
- - -
- 100% - Branches - 0/0 -
- - -
- 100% - Functions - 1/1 -
- - -
- 100% - Lines - 2/2 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-

-
1 -2 -3 -4 -5 -6 -7 -8  -  -  -1x -  -  -1x - 
function repeatStr() {
-  // Your implementation of this function must *not* call String.prototype.repeat (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat).
-  // The goal is to re-implement that function, not to use it.
-  return "hellohellohello";
-}
- 
-module.exports = repeatStr;
- 
- -
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/4-stretch/index.html b/coverage/lcov-report/4-stretch/index.html deleted file mode 100644 index 0244d66f17..0000000000 --- a/coverage/lcov-report/4-stretch/index.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - Code coverage report for 4-stretch - - - - - - - - - -
-
-

All files 4-stretch

-
- -
- 100% - Statements - 2/2 -
- - -
- 50% - Branches - 1/2 -
- - -
- 100% - Functions - 1/1 -
- - -
- 100% - Lines - 2/2 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileStatementsBranchesFunctionsLines
password-validator.js -
-
100%2/250%1/2100%1/1100%2/2
-
-
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/4-stretch/password-validator.js.html b/coverage/lcov-report/4-stretch/password-validator.js.html deleted file mode 100644 index 19d8fc2e7c..0000000000 --- a/coverage/lcov-report/4-stretch/password-validator.js.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - Code coverage report for 4-stretch/password-validator.js - - - - - - - - - -
-
-

All files / 4-stretch password-validator.js

-
- -
- 100% - Statements - 2/2 -
- - -
- 50% - Branches - 1/2 -
- - -
- 100% - Functions - 1/1 -
- - -
- 100% - Lines - 2/2 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-

-
1 -2 -3 -4 -5 -6  -1x -  -  -  -1x
function passwordValidator(password) {
-    return password.length < 5 ? false : true
-}
- 
- 
-module.exports = passwordValidator;
- -
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/base.css b/coverage/lcov-report/base.css deleted file mode 100644 index f418035b46..0000000000 --- a/coverage/lcov-report/base.css +++ /dev/null @@ -1,224 +0,0 @@ -body, html { - margin:0; padding: 0; - height: 100%; -} -body { - font-family: Helvetica Neue, Helvetica, Arial; - font-size: 14px; - color:#333; -} -.small { font-size: 12px; } -*, *:after, *:before { - -webkit-box-sizing:border-box; - -moz-box-sizing:border-box; - box-sizing:border-box; - } -h1 { font-size: 20px; margin: 0;} -h2 { font-size: 14px; } -pre { - font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace; - margin: 0; - padding: 0; - -moz-tab-size: 2; - -o-tab-size: 2; - tab-size: 2; -} -a { color:#0074D9; text-decoration:none; } -a:hover { text-decoration:underline; } -.strong { font-weight: bold; } -.space-top1 { padding: 10px 0 0 0; } -.pad2y { padding: 20px 0; } -.pad1y { padding: 10px 0; } -.pad2x { padding: 0 20px; } -.pad2 { padding: 20px; } -.pad1 { padding: 10px; } -.space-left2 { padding-left:55px; } -.space-right2 { padding-right:20px; } -.center { text-align:center; } -.clearfix { display:block; } -.clearfix:after { - content:''; - display:block; - height:0; - clear:both; - visibility:hidden; - } -.fl { float: left; } -@media only screen and (max-width:640px) { - .col3 { width:100%; max-width:100%; } - .hide-mobile { display:none!important; } -} - -.quiet { - color: #7f7f7f; - color: rgba(0,0,0,0.5); -} -.quiet a { opacity: 0.7; } - -.fraction { - font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; - font-size: 10px; - color: #555; - background: #E8E8E8; - padding: 4px 5px; - border-radius: 3px; - vertical-align: middle; -} - -div.path a:link, div.path a:visited { color: #333; } -table.coverage { - border-collapse: collapse; - margin: 10px 0 0 0; - padding: 0; -} - -table.coverage td { - margin: 0; - padding: 0; - vertical-align: top; -} -table.coverage td.line-count { - text-align: right; - padding: 0 5px 0 20px; -} -table.coverage td.line-coverage { - text-align: right; - padding-right: 10px; - min-width:20px; -} - -table.coverage td span.cline-any { - display: inline-block; - padding: 0 5px; - width: 100%; -} -.missing-if-branch { - display: inline-block; - margin-right: 5px; - border-radius: 3px; - position: relative; - padding: 0 4px; - background: #333; - color: yellow; -} - -.skip-if-branch { - display: none; - margin-right: 10px; - position: relative; - padding: 0 4px; - background: #ccc; - color: white; -} -.missing-if-branch .typ, .skip-if-branch .typ { - color: inherit !important; -} -.coverage-summary { - border-collapse: collapse; - width: 100%; -} -.coverage-summary tr { border-bottom: 1px solid #bbb; } -.keyline-all { border: 1px solid #ddd; } -.coverage-summary td, .coverage-summary th { padding: 10px; } -.coverage-summary tbody { border: 1px solid #bbb; } -.coverage-summary td { border-right: 1px solid #bbb; } -.coverage-summary td:last-child { border-right: none; } -.coverage-summary th { - text-align: left; - font-weight: normal; - white-space: nowrap; -} -.coverage-summary th.file { border-right: none !important; } -.coverage-summary th.pct { } -.coverage-summary th.pic, -.coverage-summary th.abs, -.coverage-summary td.pct, -.coverage-summary td.abs { text-align: right; } -.coverage-summary td.file { white-space: nowrap; } -.coverage-summary td.pic { min-width: 120px !important; } -.coverage-summary tfoot td { } - -.coverage-summary .sorter { - height: 10px; - width: 7px; - display: inline-block; - margin-left: 0.5em; - background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; -} -.coverage-summary .sorted .sorter { - background-position: 0 -20px; -} -.coverage-summary .sorted-desc .sorter { - background-position: 0 -10px; -} -.status-line { height: 10px; } -/* yellow */ -.cbranch-no { background: yellow !important; color: #111; } -/* dark red */ -.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 } -.low .chart { border:1px solid #C21F39 } -.highlighted, -.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{ - background: #C21F39 !important; -} -/* medium red */ -.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE } -/* light red */ -.low, .cline-no { background:#FCE1E5 } -/* light green */ -.high, .cline-yes { background:rgb(230,245,208) } -/* medium green */ -.cstat-yes { background:rgb(161,215,106) } -/* dark green */ -.status-line.high, .high .cover-fill { background:rgb(77,146,33) } -.high .chart { border:1px solid rgb(77,146,33) } -/* dark yellow (gold) */ -.status-line.medium, .medium .cover-fill { background: #f9cd0b; } -.medium .chart { border:1px solid #f9cd0b; } -/* light yellow */ -.medium { background: #fff4c2; } - -.cstat-skip { background: #ddd; color: #111; } -.fstat-skip { background: #ddd; color: #111 !important; } -.cbranch-skip { background: #ddd !important; color: #111; } - -span.cline-neutral { background: #eaeaea; } - -.coverage-summary td.empty { - opacity: .5; - padding-top: 4px; - padding-bottom: 4px; - line-height: 1; - color: #888; -} - -.cover-fill, .cover-empty { - display:inline-block; - height: 12px; -} -.chart { - line-height: 0; -} -.cover-empty { - background: white; -} -.cover-full { - border-right: none !important; -} -pre.prettyprint { - border: none !important; - padding: 0 !important; - margin: 0 !important; -} -.com { color: #999 !important; } -.ignore-none { color: #999; font-weight: normal; } - -.wrapper { - min-height: 100%; - height: auto !important; - height: 100%; - margin: 0 auto -48px; -} -.footer, .push { - height: 48px; -} diff --git a/coverage/lcov-report/block-navigation.js b/coverage/lcov-report/block-navigation.js deleted file mode 100644 index 530d1ed2ba..0000000000 --- a/coverage/lcov-report/block-navigation.js +++ /dev/null @@ -1,87 +0,0 @@ -/* eslint-disable */ -var jumpToCode = (function init() { - // Classes of code we would like to highlight in the file view - var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no']; - - // Elements to highlight in the file listing view - var fileListingElements = ['td.pct.low']; - - // We don't want to select elements that are direct descendants of another match - var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > ` - - // Selector that finds elements on the page to which we can jump - var selector = - fileListingElements.join(', ') + - ', ' + - notSelector + - missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b` - - // The NodeList of matching elements - var missingCoverageElements = document.querySelectorAll(selector); - - var currentIndex; - - function toggleClass(index) { - missingCoverageElements - .item(currentIndex) - .classList.remove('highlighted'); - missingCoverageElements.item(index).classList.add('highlighted'); - } - - function makeCurrent(index) { - toggleClass(index); - currentIndex = index; - missingCoverageElements.item(index).scrollIntoView({ - behavior: 'smooth', - block: 'center', - inline: 'center' - }); - } - - function goToPrevious() { - var nextIndex = 0; - if (typeof currentIndex !== 'number' || currentIndex === 0) { - nextIndex = missingCoverageElements.length - 1; - } else if (missingCoverageElements.length > 1) { - nextIndex = currentIndex - 1; - } - - makeCurrent(nextIndex); - } - - function goToNext() { - var nextIndex = 0; - - if ( - typeof currentIndex === 'number' && - currentIndex < missingCoverageElements.length - 1 - ) { - nextIndex = currentIndex + 1; - } - - makeCurrent(nextIndex); - } - - return function jump(event) { - if ( - document.getElementById('fileSearch') === document.activeElement && - document.activeElement != null - ) { - // if we're currently focused on the search input, we don't want to navigate - return; - } - - switch (event.which) { - case 78: // n - case 74: // j - goToNext(); - break; - case 66: // b - case 75: // k - case 80: // p - goToPrevious(); - break; - } - }; -})(); -window.addEventListener('keydown', jumpToCode); diff --git a/coverage/lcov-report/favicon.png b/coverage/lcov-report/favicon.png deleted file mode 100644 index c1525b811a167671e9de1fa78aab9f5c0b61cef7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmV;u0Yd(XP))rP{nL}Ln%S7`m{0DjX9TLF* zFCb$4Oi7vyLOydb!7n&^ItCzb-%BoB`=x@N2jll2Nj`kauio%aw_@fe&*}LqlFT43 z8doAAe))z_%=P%v^@JHp3Hjhj^6*Kr_h|g_Gr?ZAa&y>wxHE99Gk>A)2MplWz2xdG zy8VD2J|Uf#EAw*bo5O*PO_}X2Tob{%bUoO2G~T`@%S6qPyc}VkhV}UifBuRk>%5v( z)x7B{I~z*k<7dv#5tC+m{km(D087J4O%+<<;K|qwefb6@GSX45wCK}Sn*> - - - - Code coverage report for All files - - - - - - - - - -
-
-

All files

-
- -
- 98.76% - Statements - 80/81 -
- - -
- 93.93% - Branches - 31/33 -
- - -
- 100% - Functions - 10/10 -
- - -
- 98.76% - Lines - 80/81 -
- - -
-

- Press n or j to go to the next uncovered block, b, p or k for the previous block. -

- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileStatementsBranchesFunctionsLines
1-implement-and-rewrite-tests/implement -
-
98.63%72/7396.77%30/31100%6/698.63%72/73
2-practice-tdd -
-
100%6/6100%0/0100%3/3100%6/6
4-stretch -
-
100%2/250%1/2100%1/1100%2/2
-
-
-
- - - - - - - - \ No newline at end of file diff --git a/coverage/lcov-report/prettify.css b/coverage/lcov-report/prettify.css deleted file mode 100644 index b317a7cda3..0000000000 --- a/coverage/lcov-report/prettify.css +++ /dev/null @@ -1 +0,0 @@ -.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} diff --git a/coverage/lcov-report/prettify.js b/coverage/lcov-report/prettify.js deleted file mode 100644 index b3225238f2..0000000000 --- a/coverage/lcov-report/prettify.js +++ /dev/null @@ -1,2 +0,0 @@ -/* eslint-disable */ -window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]); diff --git a/coverage/lcov-report/sort-arrow-sprite.png b/coverage/lcov-report/sort-arrow-sprite.png deleted file mode 100644 index 6ed68316eb3f65dec9063332d2f69bf3093bbfab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^>_9Bd!3HEZxJ@+%Qh}Z>jv*C{$p!i!8j}?a+@3A= zIAGwzjijN=FBi!|L1t?LM;Q;gkwn>2cAy-KV{dn nf0J1DIvEHQu*n~6U}x}qyky7vi4|9XhBJ7&`njxgN@xNA8m%nc diff --git a/coverage/lcov-report/sorter.js b/coverage/lcov-report/sorter.js deleted file mode 100644 index 4ed70ae5ac..0000000000 --- a/coverage/lcov-report/sorter.js +++ /dev/null @@ -1,210 +0,0 @@ -/* eslint-disable */ -var addSorting = (function() { - 'use strict'; - var cols, - currentSort = { - index: 0, - desc: false - }; - - // returns the summary table element - function getTable() { - return document.querySelector('.coverage-summary'); - } - // returns the thead element of the summary table - function getTableHeader() { - return getTable().querySelector('thead tr'); - } - // returns the tbody element of the summary table - function getTableBody() { - return getTable().querySelector('tbody'); - } - // returns the th element for nth column - function getNthColumn(n) { - return getTableHeader().querySelectorAll('th')[n]; - } - - function onFilterInput() { - const searchValue = document.getElementById('fileSearch').value; - const rows = document.getElementsByTagName('tbody')[0].children; - - // Try to create a RegExp from the searchValue. If it fails (invalid regex), - // it will be treated as a plain text search - let searchRegex; - try { - searchRegex = new RegExp(searchValue, 'i'); // 'i' for case-insensitive - } catch (error) { - searchRegex = null; - } - - for (let i = 0; i < rows.length; i++) { - const row = rows[i]; - let isMatch = false; - - if (searchRegex) { - // If a valid regex was created, use it for matching - isMatch = searchRegex.test(row.textContent); - } else { - // Otherwise, fall back to the original plain text search - isMatch = row.textContent - .toLowerCase() - .includes(searchValue.toLowerCase()); - } - - row.style.display = isMatch ? '' : 'none'; - } - } - - // loads the search box - function addSearchBox() { - var template = document.getElementById('filterTemplate'); - var templateClone = template.content.cloneNode(true); - templateClone.getElementById('fileSearch').oninput = onFilterInput; - template.parentElement.appendChild(templateClone); - } - - // loads all columns - function loadColumns() { - var colNodes = getTableHeader().querySelectorAll('th'), - colNode, - cols = [], - col, - i; - - for (i = 0; i < colNodes.length; i += 1) { - colNode = colNodes[i]; - col = { - key: colNode.getAttribute('data-col'), - sortable: !colNode.getAttribute('data-nosort'), - type: colNode.getAttribute('data-type') || 'string' - }; - cols.push(col); - if (col.sortable) { - col.defaultDescSort = col.type === 'number'; - colNode.innerHTML = - colNode.innerHTML + ''; - } - } - return cols; - } - // attaches a data attribute to every tr element with an object - // of data values keyed by column name - function loadRowData(tableRow) { - var tableCols = tableRow.querySelectorAll('td'), - colNode, - col, - data = {}, - i, - val; - for (i = 0; i < tableCols.length; i += 1) { - colNode = tableCols[i]; - col = cols[i]; - val = colNode.getAttribute('data-value'); - if (col.type === 'number') { - val = Number(val); - } - data[col.key] = val; - } - return data; - } - // loads all row data - function loadData() { - var rows = getTableBody().querySelectorAll('tr'), - i; - - for (i = 0; i < rows.length; i += 1) { - rows[i].data = loadRowData(rows[i]); - } - } - // sorts the table using the data for the ith column - function sortByIndex(index, desc) { - var key = cols[index].key, - sorter = function(a, b) { - a = a.data[key]; - b = b.data[key]; - return a < b ? -1 : a > b ? 1 : 0; - }, - finalSorter = sorter, - tableBody = document.querySelector('.coverage-summary tbody'), - rowNodes = tableBody.querySelectorAll('tr'), - rows = [], - i; - - if (desc) { - finalSorter = function(a, b) { - return -1 * sorter(a, b); - }; - } - - for (i = 0; i < rowNodes.length; i += 1) { - rows.push(rowNodes[i]); - tableBody.removeChild(rowNodes[i]); - } - - rows.sort(finalSorter); - - for (i = 0; i < rows.length; i += 1) { - tableBody.appendChild(rows[i]); - } - } - // removes sort indicators for current column being sorted - function removeSortIndicators() { - var col = getNthColumn(currentSort.index), - cls = col.className; - - cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); - col.className = cls; - } - // adds sort indicators for current column being sorted - function addSortIndicators() { - getNthColumn(currentSort.index).className += currentSort.desc - ? ' sorted-desc' - : ' sorted'; - } - // adds event listeners for all sorter widgets - function enableUI() { - var i, - el, - ithSorter = function ithSorter(i) { - var col = cols[i]; - - return function() { - var desc = col.defaultDescSort; - - if (currentSort.index === i) { - desc = !currentSort.desc; - } - sortByIndex(i, desc); - removeSortIndicators(); - currentSort.index = i; - currentSort.desc = desc; - addSortIndicators(); - }; - }; - for (i = 0; i < cols.length; i += 1) { - if (cols[i].sortable) { - // add the click event handler on the th so users - // dont have to click on those tiny arrows - el = getNthColumn(i).querySelector('.sorter').parentElement; - if (el.addEventListener) { - el.addEventListener('click', ithSorter(i)); - } else { - el.attachEvent('onclick', ithSorter(i)); - } - } - } - } - // adds sorting functionality to the UI - return function() { - if (!getTable()) { - return; - } - cols = loadColumns(); - loadData(); - addSearchBox(); - addSortIndicators(); - enableUI(); - }; -})(); - -window.addEventListener('load', addSorting); diff --git a/coverage/lcov.info b/coverage/lcov.info deleted file mode 100644 index 304b53d21b..0000000000 --- a/coverage/lcov.info +++ /dev/null @@ -1,197 +0,0 @@ -TN: -SF:Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js -FN:17,getAngleType -FN:51,assertEquals -FNF:2 -FNH:2 -FNDA:24,getAngleType -FNDA:10,assertEquals -DA:19,24 -DA:21,5 -DA:23,19 -DA:25,2 -DA:27,17 -DA:29,4 -DA:31,13 -DA:33,3 -DA:35,10 -DA:37,4 -DA:41,6 -DA:47,1 -DA:52,10 -DA:60,1 -DA:61,1 -DA:63,1 -DA:64,1 -DA:66,1 -DA:67,1 -DA:69,1 -DA:70,1 -DA:72,1 -DA:73,1 -DA:75,1 -DA:76,1 -DA:78,1 -DA:79,1 -DA:81,1 -DA:82,1 -DA:84,1 -DA:85,1 -DA:87,1 -DA:88,1 -LF:33 -LH:33 -BRDA:19,0,0,5 -BRDA:19,0,1,19 -BRDA:19,1,0,24 -BRDA:19,1,1,21 -BRDA:23,2,0,2 -BRDA:23,2,1,17 -BRDA:27,3,0,4 -BRDA:27,3,1,13 -BRDA:27,4,0,17 -BRDA:27,4,1,14 -BRDA:31,5,0,3 -BRDA:31,5,1,10 -BRDA:35,6,0,4 -BRDA:35,6,1,6 -BRDA:35,7,0,10 -BRDA:35,7,1,7 -BRF:16 -BRH:16 -end_of_record -TN: -SF:Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js -FN:13,isProperFraction -FN:30,assertEquals -FNF:2 -FNH:2 -FNDA:16,isProperFraction -FNDA:7,assertEquals -DA:15,16 -DA:16,16 -DA:17,16 -DA:19,6 -DA:22,10 -DA:27,1 -DA:31,7 -DA:41,1 -DA:43,1 -DA:44,1 -DA:45,1 -DA:46,1 -DA:47,1 -DA:48,1 -LF:14 -LH:14 -BRDA:17,0,0,6 -BRDA:17,0,1,10 -BRF:2 -BRH:2 -end_of_record -TN: -SF:Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js -FN:24,getCardValue -FN:57,assertEquals -FNF:2 -FNH:2 -FNDA:27,getCardValue -FNDA:7,assertEquals -DA:26,27 -DA:27,27 -DA:28,27 -DA:31,27 -DA:32,6 -DA:35,21 -DA:37,21 -DA:38,1 -DA:42,20 -DA:43,8 -DA:46,12 -DA:47,12 -DA:48,12 -DA:54,1 -DA:58,7 -DA:66,1 -DA:68,1 -DA:69,1 -DA:72,1 -DA:73,1 -DA:74,1 -DA:75,1 -DA:77,1 -DA:78,1 -DA:81,0 -DA:83,1 -LF:26 -LH:25 -BRDA:31,0,0,6 -BRDA:31,0,1,21 -BRDA:37,1,0,1 -BRDA:37,1,1,20 -BRDA:37,2,0,21 -BRDA:37,2,1,13 -BRDA:37,2,2,12 -BRDA:42,3,0,8 -BRDA:42,3,1,12 -BRDA:47,4,0,12 -BRDA:47,4,1,0 -BRDA:47,5,0,12 -BRDA:47,5,1,12 -BRF:13 -BRH:12 -end_of_record -TN: -SF:Sprint-3/2-practice-tdd/count.js -FN:1,countChar -FNF:1 -FNH:1 -FNDA:1,countChar -DA:2,1 -DA:5,1 -LF:2 -LH:2 -BRF:0 -BRH:0 -end_of_record -TN: -SF:Sprint-3/2-practice-tdd/get-ordinal-number.js -FN:1,getOrdinalNumber -FNF:1 -FNH:1 -FNDA:2,getOrdinalNumber -DA:2,2 -DA:5,1 -LF:2 -LH:2 -BRF:0 -BRH:0 -end_of_record -TN: -SF:Sprint-3/2-practice-tdd/repeat-str.js -FN:1,repeatStr -FNF:1 -FNH:1 -FNDA:1,repeatStr -DA:4,1 -DA:7,1 -LF:2 -LH:2 -BRF:0 -BRH:0 -end_of_record -TN: -SF:Sprint-3/4-stretch/password-validator.js -FN:1,passwordValidator -FNF:1 -FNH:1 -FNDA:1,passwordValidator -DA:2,1 -DA:6,1 -LF:2 -LH:2 -BRDA:2,0,0,0 -BRDA:2,0,1,1 -BRF:2 -BRH:1 -end_of_record From 4d1bf8c552f5c44365ed0bf3c8912ef101ad0726 Mon Sep 17 00:00:00 2001 From: Dagim-Daniel Date: Mon, 6 Jul 2026 20:02:41 +0100 Subject: [PATCH 7/7] Sprint 3 implement and rewrite-test with jest has been done --- .../implement/3-get-card-value.js | 4 +++ .../1-get-angle-type.test.js | 30 +++++++++++++++++++ .../2-is-proper-fraction.test.js | 16 ++++++++++ .../3-get-card-value.test.js | 27 ++++++++++++++++- 4 files changed, 76 insertions(+), 1 deletion(-) diff --git a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js index 364fe0c5b6..c378a02ba7 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js +++ b/Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js @@ -34,6 +34,10 @@ function getCardValue(card) { const faceCardValues = {'A': 11, 'J': 10, 'Q': 10, 'K': 10}; + if(faceCardValues[value] === undefined && (Number(value) < 2 || Number(value) > 10)) { + throw new Error("Invalid card"); + } + if (faceCardValues[value] !== undefined) { return faceCardValues[value]; } diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js index d777f348d3..320f412274 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js @@ -14,7 +14,37 @@ test(`should return "Acute angle" when (0 < angle < 90)`, () => { }); // Case 2: Right angle +test(`should return "Right angle" when (Angle ===90)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(90)).toEqual("Right angle"); + +}); + // Case 3: Obtuse angles +test(`should return "Obtuse angle" when ( 90 < angle < 180)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(91)).toEqual("Obtuse angle"); + expect(getAngleType(125)).toEqual("Obtuse angle"); + expect(getAngleType(179)).toEqual("Obtuse angle"); +}); + // Case 4: Straight angle +test(`should return "Straight angle" when (angle === 180)`, () => { + // Test various acute angles, including boundary cases + expect(getAngleType(180)).toEqual("Straight angle"); +}); // Case 5: Reflex angles +test(`should return "Reflex angle" when (180 < angle < 360)`, () => { + // Test various reflex angles, including boundary cases + expect(getAngleType(181)).toEqual("Reflex angle"); + expect(getAngleType(270)).toEqual("Reflex angle"); + expect(getAngleType(359)).toEqual("Reflex angle"); +}); // Case 6: Invalid angles +test(`should return "Invalid angle" when (angle < 0 || angle > 360)`, () => { + // Test various invalid angles + expect(getAngleType(-1)).toEqual("Invalid angle"); + expect(getAngleType(361)).toEqual("Invalid angle"); + expect(getAngleType(0)).toEqual("Invalid angle"); +}); + diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js index 7f087b2ba1..be88c2f88b 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js @@ -3,8 +3,24 @@ const isProperFraction = require("../implement/2-is-proper-fraction"); // TODO: Write tests in Jest syntax to cover all combinations of positives, negatives, zeros, and other categories. +test(`should return True when denominator is positive and less than numerator`, () => { + expect(isProperFraction(1, 2)).toEqual(true); + expect(isProperFraction(-1, 2)).toEqual(true ); + expect(isProperFraction(1, 10)).toEqual(true); +}); + +test(`should return false when denominator is less than numerator`, () => { + expect(isProperFraction(22, 20)).toEqual(false); + expect(isProperFraction(11, 10)).toEqual(false); +}); + +test(`should return false when denominator and numerator are equal`, () => { + expect(isProperFraction(1, 1)).toEqual(false); + expect(isProperFraction(-1, -1)).toEqual(false); +}); // Special case: numerator is zero test(`should return false when denominator is zero`, () => { expect(isProperFraction(1, 0)).toEqual(false); + expect(isProperFraction(-1, 0)).toEqual(false); }); diff --git a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js index cf7f9dae2e..e51171336c 100644 --- a/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js +++ b/Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js @@ -11,9 +11,34 @@ test(`Should return 11 when given an ace card`, () => { // Suggestion: Group the remaining test data into these categories: // Number Cards (2-10) +test(`Should return 10 when given a number card`, () => { + expect(getCardValue("2♠")).toEqual(2); + expect(getCardValue("3♦")).toEqual(3); + expect(getCardValue("4♣")).toEqual(4); + expect(getCardValue("5♠")).toEqual(5); + expect(getCardValue("6♦")).toEqual(6); + expect(getCardValue("7♣")).toEqual(7); + expect(getCardValue("8♠")).toEqual(8); + expect(getCardValue("9♦")).toEqual(9); + expect(getCardValue("10♣")).toEqual(10); +}); // Face Cards (J, Q, K) -// Invalid Cards +test(`Should return 10 when given a number card`, () => { + expect(getCardValue("K♠")).toEqual(10); + expect(getCardValue("q♦")).toEqual(10); + expect(getCardValue("J♣")).toEqual(10); +}); +// Invalid Cards +test(`Should return Invalid Cards when given invalid inputs`, () => { + expect(() => getCardValue("")).toThrow(); + expect(() => getCardValue("11")).toThrow(); + expect(() => getCardValue("♠10")).toThrow(); + expect(() => getCardValue("invalid")).toThrow(); + expect(() => getCardValue("♠1")).toThrow(); + expect(() => getCardValue("ab")).toThrow(); + +}); // To learn how to test whether a function throws an error as expected in Jest, // please refer to the Jest documentation: // https://jestjs.io/docs/expect#tothrowerror