Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Test unitarios en Java con JUnit 4

Tiempo de lectura: 3 minutos

Hoy os voy a enseñar cómo podéis implementar pruebas con JUnit en java con un sencillo ejemplo.

Lo primero de todo es empezar un proyecto en Java y crear una clase de ejemplo, la llamaremos Multiplicar:

Ahora vamos a crear una función sencilla para multiplicar:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
public class Multiplicar {
public double multiplicar(double number1, double number2) {
return number1* number2;
}
}
public class Multiplicar { public double multiplicar(double number1, double number2) { return number1* number2; } }
public class Multiplicar {
	public double multiplicar(double number1, double number2) {
		return number1* number2;
	}
}

Ahora vamos a crear una clase Main dónde vamos a ejecutar toda la magia de los tests:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
public class Main {
public static void main(String[] args) {
Multiplicar multiplicarOBJ = new Multiplicar();
System.out.println("Resultado: " + multiplicarOBJ.multiplicar(2, 2));
}
}
public class Main { public static void main(String[] args) { Multiplicar multiplicarOBJ = new Multiplicar(); System.out.println("Resultado: " + multiplicarOBJ.multiplicar(2, 2)); } }
public class Main {
	public static void main(String[] args) {
		Multiplicar multiplicarOBJ = new Multiplicar();
		System.out.println("Resultado: " + multiplicarOBJ.multiplicar(2, 2));
	}
}

Y ahora vamos a añadir los tests en JUnit:

Pulsamos en Apply and Close y ya tenemos importado JUnit en nuestro proyecto.

Ahora pulsamos en botón derecho encima de la clase dónde vamos a implementar los tests y seleccionamos New > JUnit Test Case:

Ahora podemos poner un nombre para el Class que nos va a crear de test, en mi caso lo mantengo tal cual viene:

Decimos que implemente JUnit4:

Una vez creado nos aparecerá un test creado:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import static org.junit.Assert.*;
import org.junit.Test;
public class MultiplicarTest {
@Test
public void testMutiplicacion() {
fail("Not yet implemented");
}
}
import static org.junit.Assert.*; import org.junit.Test; public class MultiplicarTest { @Test public void testMutiplicacion() { fail("Not yet implemented"); } }
import static org.junit.Assert.*;

import org.junit.Test;

public class MultiplicarTest {
	@Test
	public void testMutiplicacion() {
		fail("Not yet implemented");
	}

}

Y ahora, en este esqueleto, vamos a implementar la prueba de JUnit:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
@Test
public void testMutiplicacion() {
Multiplicar multiplicar = new Multiplicar();
double resultado = multiplicar.mutiplicacion(2, 2);
double resultadoEsperado = 4.0;
assertEquals(resultadoEsperado, resultado,0);
}
@Test public void testMutiplicacion() { Multiplicar multiplicar = new Multiplicar(); double resultado = multiplicar.mutiplicacion(2, 2); double resultadoEsperado = 4.0; assertEquals(resultadoEsperado, resultado,0); }
@Test
	public void testMutiplicacion() {
		Multiplicar multiplicar = new Multiplicar();
		double resultado = multiplicar.mutiplicacion(2, 2);
		double resultadoEsperado = 4.0;
		assertEquals(resultadoEsperado, resultado,0);
	}

La prueba queda muy sencilla, primero instanciamos el Objeto Multiplicar que hemos creado, después sacamos una multiplicación 2*2 y guardamos su resultado en una variable.

Creamos una variable dónde indicamos el resultado que esperamos.

Llamamos al método assertEquals de JUnit para comprobar que el resultado esperado es el resultado del método.

Y ejecutamos el test:

  • Botón derecho, Run as > JUnit test

Si el test ha funcionado, aparecerá en verde:

0

Deja un comentario