BAEL-6198: renaming

This commit is contained in:
emanueltrandafir1993 2023-02-04 16:49:19 +01:00
parent fecb0722ee
commit b12a58d375
2 changed files with 3 additions and 3 deletions

View File

@ -4,11 +4,11 @@ import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
public class NestedTest {
public class NestedUnitTest {
@BeforeEach
void beforeEach() {
System.out.println("NestedTest.beforeEach()");
System.out.println("NestedUnitTest.beforeEach()");
}
@Nested

View File

@ -11,7 +11,7 @@ import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
@DisplayName("given a article publication with three articles")
class OnlinePublicationTest {
class OnlinePublicationUnitTest {
private Publication publication;
@BeforeEach