Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juanies/pruebas-software
https://github.com/juanies/pruebas-software
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/juanies/pruebas-software
- Owner: Juanies
- Created: 2024-02-05T15:05:33.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-07T09:32:14.000Z (10 months ago)
- Last Synced: 2024-03-07T10:51:24.036Z (10 months ago)
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
➢ De caja negra: (o de comportamiento) Sólo se comprueba la funcionalidad, es decir,
si la salida es adecuada en función de los datos de entrada, sin fijarse en el
funcionamiento interno. En las pruebas de caja negra también serán necesarios
múltiples casos de prueba que incluyan todos los grupos de entradas que tienen
comportamientos distintos➢ De caja blanca: (o estructurales) Se analiza la estructura interna del programa
inspeccionando el código.```java
(I) public void suma () {
(1) Scanner teclado = new Scanner(System.in);
(2) int a, b, resultado;
(3) System.out.println("Introduce un número positivo");
(4) a = teclado.nextInt();
(5) System.out.println("Introduce otro número positivo");
(6) b = teclado.nextInt();
(7)y(8) if ((a>0) && (b>0)) {
(9) resultado = a + b;
(10) System.out.println("El resultado es: "+resultado);
} else {
(11) System.out.println("No son positivos");
}
(12) teclado.close();
(F) }
```![image](https://github.com/Juanies/Pruebas-software/assets/80675013/85108540-ce56-441b-ab94-7fd90c48e48d)
![awa](https://github.com/Juanies/Pruebas-software/assets/80675013/ea84104a-98f3-4f6c-88b0-c12df42fb107)
DIVISIBLE
![Untitled-2024-01-16-2147](https://github.com/Juanies/Pruebas-software/assets/80675013/64818ed3-d39f-4f71-9a51-b7cbee5299cc)