forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
Atividade 2 Testes de Software
Wellington Jonathan edited this page Oct 18, 2021
·
6 revisions
Decisão (linha) | Condição | Situação para verdadeiro | Situação para falso |
---|---|---|---|
19 | isCaseSensitive == true |
Variavel boolean é true e exite objeto searchDisplayMode | Variavel boolean é false e exite objeto searchDisplayMode |
22 | isRegularExpression == true |
Variavel boolean é true e exite objeto searchDisplayMode | Variavel boolean é false e exite objeto searchDisplayMode |
25 | isFulltext == true |
Variavel boolean é true e exite objeto searchDisplayMode | Variavel boolean é false e exite objeto searchDisplayMode |
28 | isKeepSearchString == true |
Variavel boolean é true e exite objeto searchDisplayMode | Variavel boolean é false e exite objeto searchDisplayModeo |
Caso de teste | Entradas | Saídas Esperadas |
---|---|---|
1 | isCaseSensitive = true; searchPreferences= searchPreferences.withCaseSensitive(isCaseSensitive); |
true |
2 | isRegularExpression = true; searchPreferences= searchPreferences.withRegularExpression(isRegularExpression); |
true |
3 | isFulltext = true; searchPreferences= searchPreferences.withFulltext(isFulltext); |
true |
4 | isKeepSearchString = true; searchPreferences= searchPreferences.withKeepSearchString(isKeepSearchString); |
true |