Boundary Value Analysis When choosing values from an equivalence class to test, use the values that are most likely to cause the program to fail Errors tend to occur at the boundaries of equivalence classes rather than at the center –If (200 < areaCode && areaCode < 999) { // valid area code } –Wrong.