Skip to content

Commit 0eeb35e

Browse files
proof reading SDLC
1 parent e70e7bb commit 0eeb35e

File tree

1 file changed

+3
-3
lines changed
  • individual_modules/software_development_best_practices

1 file changed

+3
-3
lines changed

individual_modules/software_development_best_practices/testing.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"## Learning Objectives\n",
1616
"- Understand the purpose and importance of testing in software development\n",
1717
"- 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",
1919
"- Apply different testing strategies, including unit testing and integration testing\n",
2020
"- Develop and automate tests using tools like `pytest`\n",
2121
"\n",
@@ -54,8 +54,8 @@
5454
"\n",
5555
"### Test Cases to Consider\n",
5656
"- **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",
5959
"\n",
6060
"### Exercise Code "
6161
]

0 commit comments

Comments
 (0)