Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@
- If the number of registered students is between 10 and 50 in the Engineering Faculty, the course will be held in building B.
- For the Art and Science Faculty, if the number of registered students is less than 10, the course will be held in building B.
- If the number of registered students is between 10 and 50, the course will be held in building C.
- If the number of registered students is greater than 50 for both faculties, the course will be held in building D.
- If the number of registered students is greater than 50 for both faculties, the course will be held in building D.
- If the sum of the students are over 50 then the bigger group has to move to building D.
### The same in a table
| enginner_students | art_science_students | Building result |
|-------------------|----------------------|-----------------|
| <10 | | A |
| between 10-50 | | B |
| | <10 | B |
| | between 10-50 | C |
| >50 | >50 | D |
| engineer_students | art_science_students | Building result |
|-------------------|----------------------|-------------------------------|
| <10 | | engineer: A |
| between 10-50 | | engineer: B |
| | <10 | art_science: B |
| | between 10-50 | art_science: C |
| >50 | >50 | both: D |
| x | y | x+y>50 -> bigger group: D (equality -> art_science: D) |

## The goal is
- Tested this program
- Created bugs for this implementations that are difficult to see
- *bad functions
- Test this program
- Create bugs for this implementations that are difficult to see
- Implemented these in *bad functions
- Minimize tests which can detect these bugs
Loading