Tests(DPxAI): Add test for Quest01 the-smooth-operator

This commit is contained in:
Louis TOUSSAINT 2024-07-31 15:36:39 +02:00 committed by Oumaima Fisaoui
parent 4df4de9469
commit b330c72195
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
[
{
"description": "values of the variable are a result of the operations on the variable smooth ( 10 )",
"code": "let smooth = 10\n\n// Your code\n\nequal(lessSmooth, 9)\nequal(semiSmooth, 5)\nequal(plus11, 21)"
},
{
"description": "values of the variable are a result of the operations on the variable smooth ( 27 )",
"code": "let smooth = 27\n\n// Your code\nequal(lessSmooth, 26)\nequal(semiSmooth, 13.5)\nequal(plus11, 38)"
},
{
"description": "ultraSmooth should be the square of the value of smooth ( 10 )",
"code": "let smooth = 10\n\n// Your code\n\nequal(ultraSmooth, 100)"
},
{
"description": "ultraSmooth should be the square of the value of smooth ( 27 )",
"code": "let smooth = 27\n\n// Your code\n\nequal(ultraSmooth, 729)"
},
{
"description": "presentation value includes age and name .",
"code": "let name = 'Patrick'\nlet age = 48\n\n// Your code\nequal(presentation, `Hello, my name is Patrick and I'm 48 years old`)"
},
{
"description": "presentation value still includes age and name .",
"code": "let name = 'Jeremy'\nlet age = 27\n\n// Your code\nequal(presentation, `Hello, my name is Jeremy and I'm 27 years old`)"
}
]