





























Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Software Engineering and Project Management - Module 3
Typology: Study notes
1 / 37
This page cannot be seen from the preview
Don't miss anything!
1. Interface - Are inputs and outputs correct? - Example: If a function takes 2 numbers, does it return the correct result? 2. Local Data Structures - Are internal variables, arrays, or lists used correctly? - Example: Are variables storing the right values? 3. Boundary Conditions - How does the module behave at the edges? - Example: If the function takes numbers from 1 to 100, what happens at 1 and 100? 4. Independent Paths - Does each logical path in the code work? - Example: If your code has if...else conditions, you should test both paths. 5. Error Handling Paths - Does the module respond correctly to invalid or unexpected input? - Example: What if someone inputs text instead of a number?