AMLSim
/
jars
/junit5-r5.10.2
/documentation
/src
/test
/java
/example
/DisplayNameGeneratorDemo.java
/* | |
* Copyright 2015-2023 the original author or authors. | |
* | |
* All rights reserved. This program and the accompanying materials are | |
* made available under the terms of the Eclipse Public License v2.0 which | |
* accompanies this distribution and is available at | |
* | |
* https://www.eclipse.org/legal/epl-v20.html | |
*/ | |
package example; | |
// tag::user_guide[] | |
import org.junit.jupiter.api.DisplayName; | |
import org.junit.jupiter.api.DisplayNameGeneration; | |
import org.junit.jupiter.api.DisplayNameGenerator; | |
import org.junit.jupiter.api.DisplayNameGenerator.ReplaceUnderscores; | |
import org.junit.jupiter.api.IndicativeSentencesGeneration; | |
import org.junit.jupiter.api.Nested; | |
import org.junit.jupiter.api.Test; | |
import org.junit.jupiter.params.ParameterizedTest; | |
import org.junit.jupiter.params.provider.ValueSource; | |
class DisplayNameGeneratorDemo { | |
class A_year_is_not_supported { | |
void if_it_is_zero() { | |
} | |
void if_it_is_negative(int year) { | |
} | |
} | |
class A_year_is_a_leap_year { | |
void if_it_is_divisible_by_4_but_not_by_100() { | |
} | |
void if_it_is_one_of_the_following_years(int year) { | |
} | |
} | |
} | |
// end::user_guide[] | |