--JUnit est un framework de test automatisé Java
├── build.gradle
├── settings.gradle
└── src
├── main
│ └── java
│ └── myapp
│ └── Calc.java
└── test
└── java
└── myapp
└── CalcTest.java
build.gradle
build.gradle
plugins {
id 'java'
}
repositories {
jcenter()
}
dependencies {
// Junit Jupiter 5.5.Introduit 2
//Les éléments suivants sont présentés comme dépendances
// junit-jupiter-api:5.5.2
// junit-jupiter-engine:5.5.2
// junit-jupiter-platform-engine:1.5.2
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}
test {
//Paramètres pour utiliser la plateforme JUnit
useJUnitPlatform()
testLogging {
//Afficher la sortie standard et la sortie d'erreur standard pendant le test
showStandardStreams true
//Événement de sortie(TestLogEvent)
events 'started', 'skipped', 'passed', 'failed'
//Paramètres de sortie lorsqu'une exception se produit(TestExceptionFormat)
exceptionFormat 'full'
}
}
référence:
settings.gradle
settings.gradle
rootProject.name = 'myapp'
Calc.java
package myapp;
public class Calc {
private int base;
//Définir une valeur de référence
public Calc(int base) {
this.base = base;
}
//Ajouter
public int plus(int num) {
return base + num;
}
//Tirer
public int minus(int num) {
return base - num;
}
}
CalcTest.java
package myapp;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
class CalcTest {
//Exécuter une seule fois avant le début du test
@BeforeAll
static void beforeAll() {
System.out.println("Démarrer CalcTest");
}
//Exécuter une seule fois après le début du test
@AfterAll
static void afterAll() {
System.out.println("CalcTest terminé");
}
//Exécuté une seule fois avant de démarrer chaque méthode de test
@BeforeEach
void beforeEach() {
System.out.println("Démarrer une méthode de test pour CalcTest");
}
//Exécuté une seule fois après le début de chaque méthode de test
@AfterEach
void afterEach() {
System.out.println("Terminer une méthode de test de CalcTest");
}
//Les méthodes de test ne doivent pas être privées ou statiques
//La valeur de retour doit être void car la valeur ne peut pas être retournée.
@Test
void testPlus() {
System.out.println("Exécutez testPlus: 2 + 3 = 5");
Calc calc = new Calc(2);
//1er argument:résultat attendu attendu
//2ème argument:résultat réel de l'exécution
//3e argument:message Message de sortie en cas d'échec
assertEquals(5, calc.plus(3), "2 + 3 =Vérification de 5");
}
@Test
void testMinus() {
System.out.println("Exécuter testMinus: 5 - 2 = 3");
Calc calc = new Calc(5);
assertEquals(3, calc.minus(2), "5 - 2 =Vérification de 3");
}
}
référence:
$ gradle test
> Task :test
myapp.CalcTest STANDARD_OUT
Démarrer CalcTest
myapp.CalcTest > testMinus() STARTED
myapp.CalcTest > testMinus() STANDARD_OUT
Démarrer une méthode de test pour CalcTest
Exécuter testMinus: 5 - 2 = 3
Terminer une méthode de test de CalcTest
myapp.CalcTest > testMinus() PASSED
myapp.CalcTest > testPlus() STARTED
myapp.CalcTest > testPlus() STANDARD_OUT
Démarrer une méthode de test pour CalcTest
Exécutez testPlus: 2 + 3 = 5
Terminer une méthode de test de CalcTest
myapp.CalcTest > testPlus() PASSED
myapp.CalcTest STANDARD_OUT
CalcTest terminé
BUILD SUCCESSFUL in 1s
3 actionable tasks: 3 executed
$ gradle test
> Task :test FAILED
myapp.CalcTest STANDARD_OUT
Démarrer CalcTest
myapp.CalcTest > testMinus() STARTED
myapp.CalcTest > testMinus() STANDARD_OUT
Démarrer une méthode de test pour CalcTest
Exécuter testMinus: 5 - 2 = 3
Terminer une méthode de test de CalcTest
myapp.CalcTest > testMinus() FAILED
org.opentest4j.AssertionFailedError: 5 - 2 =Vérification de 3==> expected: <3> but was: <7>
at org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:55)
at org.junit.jupiter.api.AssertionUtils.failNotEqual(AssertionUtils.java:62)
at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:150)
at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:542)
at myapp.CalcTest.testMinus(CalcTest.java:48)
package myapp;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
class CalcTest {
@Test
void testPlus() {
Calc calc = new Calc(10);
//Vérifier collectivement
//Même s'il échoue au milieu, vérifiez tout sans vous arrêter
assertAll(
() -> assertEquals(30, calc.plus(20)),
() -> assertEquals(99, calc.plus(90)),
() -> assertEquals(11, calc.plus(50)),
() -> assertEquals(40, calc.plus(30))
);
}
}
référence:
$ gradle test
> Task :test FAILED
myapp.CalcTest > testPlus() STARTED
myapp.CalcTest > testPlus() FAILED
org.opentest4j.MultipleFailuresError: Multiple Failures (2 failures)
org.opentest4j.AssertionFailedError: expected: <99> but was: <100>
org.opentest4j.AssertionFailedError: expected: <11> but was: <60>
at org.junit.jupiter.api.AssertAll.assertAll(AssertAll.java:80)
at org.junit.jupiter.api.AssertAll.assertAll(AssertAll.java:44)
at org.junit.jupiter.api.AssertAll.assertAll(AssertAll.java:38)
at org.junit.jupiter.api.Assertions.assertAll(Assertions.java:2839)
at myapp.CalcTest.testPlus(CalcTest.java:15)
1 test completed, 1 failed
FAILURE: Build failed with an exception.
package myapp;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
class CalcTest {
@Test
void testPlus() {
Calc calc = new Calc(100);
//En supposant qu'une ArithmeticException se produira si elle est divisée par 0
ArithmeticException e =
assertThrows(ArithmeticException.class,
() -> calc.divide(0));
assertTrue(e instanceof ArithmeticException);
}
}
Recommended Posts