You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: individual_modules/software_development_best_practices/testing.ipynb
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@
15
15
"## Learning Objectives\n",
16
16
"- Understand the purpose and importance of testing in software development\n",
17
17
"- Identify the benefits of implementing tests in your code\n",
18
-
"- Differentiate between functional and on-functional requirements\n",
18
+
"- Differentiate between functional and non-functional requirements\n",
19
19
"- Apply different testing strategies, including unit testing and integration testing\n",
20
20
"- Develop and automate tests using tools like `pytest`\n",
21
21
"\n",
@@ -54,8 +54,8 @@
54
54
"\n",
55
55
"### Test Cases to Consider\n",
56
56
"- **Correctness**: Ensure the function returns a list of integers.\n",
57
-
"- **Sequence Accuracy**: Verify that the sequence length is correct and each integer follows the Fibonacci rule (i.e., each number is the sum of the two preceding numbers).\n",
58
-
"- **Edge Cases**: Test minimum sequence length and handle invalid inputs (e.g., sequence lengths less than 3).\n",
57
+
"- **Sequence Accuracy**: Verify that the sequence length is correct, and each integer follows the Fibonacci rule (i.e. each number is the sum of the two preceding numbers).\n",
58
+
"- **Edge Cases**: Test minimum sequence length and handle invalid inputs (e.g. sequence lengths less than 3).\n",
0 commit comments