BAEL2489 Avoid check for null statement in Java

This commit is contained in:
Chirag Dewan 2019-03-16 11:51:03 +05:30
parent b1a4f6bb21
commit 55f7da4948
5 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test;
class PrimitivesAndWrapperTest {
class PrimitivesAndWrapperUnitTest {
@Test
public void givenWrappers_whenBothArgsNonNull_thenReturnResult() {

View File

@ -6,7 +6,7 @@ import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class UsingLombokTest {
class UsingLombokUnitTest {
private UsingLombok classUnderTest;

View File

@ -7,7 +7,7 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class UsingObjectsTest {
class UsingObjectsUnitTest {
private UsingObjects classUnderTest;

View File

@ -9,7 +9,7 @@ import java.util.Optional;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class UsingOptionalTest {
class UsingOptionalUnitTest {
private UsingOptional classUnderTest;

View File

@ -6,7 +6,7 @@ import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class UsingStringUtilsTest {
class UsingStringUtilsUnitTest {
private UsingStringUtils classUnderTest;