Do not use the command syntax
ID | STAT-26 |
Title | Do not use the command syntax. |
Priority | Strongly recommended |
Severity level | 7 |
Description | Do not use command syntax statements in the code. |
Rationale | Readability and maintanability of the code decreases by the use of command syntax statements. |
Avoid:
verifyNameLength namePersonA namePersonB
Instead use:
verifyNameLength("namePersonA", "namePersonB")