Ayuda Pregunta de examen metodo de C#
Publicado por John Matrix (1 intervención) el 12/02/2016 16:50:02
Hola me podrian ayudar a resolver esta pregunta de examen que no pude contestar, muchas gracias por su ayuda, saludos!
Given the following method, please list and document a test plan along with test cases to fully test this method - 100% code coverage. Please document all the tests and the ones you have eliminated to remove redundant tests.
Given the following method, please list and document a test plan along with test cases to fully test this method - 100% code coverage. Please document all the tests and the ones you have eliminated to remove redundant tests.
1
2
3
4
5
6
7
8
public void echoResults(int x, int y, int z){
if( x > y ){
if( z > 0){
System.out.println("Z is greater than 0");
}
System.out.println("X is greater than Y");
}
}
Valora esta pregunta


0