Bael 6556 2 (#4365)

* Added parent module on poms that have no parent defined

* Removed dependency reduced pom from undertow module

* [BAEL-6556] - Next set of testcase renamed
This commit is contained in:
Amit Pandey
2018-05-30 01:44:19 +05:30
committed by Grzegorz Piwowarek
parent 8713e26b6f
commit dfcc0cab05
39 changed files with 41 additions and 41 deletions
@@ -15,7 +15,7 @@ import static org.junit.Assert.assertArrayEquals;
import org.junit.Test;
public class ArrayInitializerTest {
public class ArrayInitializerUnitTest {
@Test
public void whenInitializeArrayInLoop_thenCorrect() {
@@ -3,7 +3,7 @@ package com.baeldung.array;
import org.junit.Assert;
import org.junit.Test;
public class Find2ndLargestInArrayTest {
public class Find2ndLargestInArrayUnitTest {
@Test
public void givenAnIntArray_thenFind2ndLargestElement() {
int[] array = { 1, 3, 24, 16, 87, 20 };
@@ -3,7 +3,7 @@ package com.baeldung.array;
import org.junit.Assert;
import org.junit.Test;
public class FindElementInArrayTest {
public class FindElementInArrayUnitTest {
@Test
public void givenAnIntArray_whenNotUsingStream_thenFindAnElement() {
int[] array = { 1, 3, 4, 8, 19, 20 };
@@ -3,7 +3,7 @@ package com.baeldung.array;
import org.junit.Assert;
import org.junit.Test;
public class SumAndAverageInArrayTest {
public class SumAndAverageInArrayUnitTest {
@Test
public void givenAnIntArray_whenNotUsingStream_thenFindSum() {
int[] array = { 1, 3, 4, 8, 19, 20 };
@@ -6,7 +6,7 @@ import org.junit.Test;
import com.baeldung.asciiart.AsciiArt.Settings;
public class AsciiArtTest {
public class AsciiArtIntegrationTest {
@Test
public void givenTextWithAsciiCharacterAndSettings_shouldPrintAsciiArt() {
@@ -9,7 +9,7 @@ import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class BreakContinueTest {
public class BreakContinueUnitTest {
@Test
public void whenUnlabeledBreak_ThenEqual() {
@@ -5,7 +5,7 @@ import static org.junit.Assert.*;
import java.util.ArrayList;
import java.util.List;
public class CastingTest {
public class CastingUnitTest {
@Test
public void whenPrimitiveConverted_thenValueChanged() {
@@ -5,7 +5,7 @@ import org.junit.Test;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class CustomClassLoaderTest {
public class CustomClassLoaderUnitTest {
@Test
public void customLoader() throws ClassNotFoundException, IllegalAccessException, InstantiationException, NoSuchMethodException, InvocationTargetException {
@@ -4,7 +4,7 @@ import org.junit.Test;
import static org.junit.Assert.*;
public class PrintClassLoaderTest {
public class PrintClassLoaderUnitTest {
@Test(expected = ClassNotFoundException.class)
public void givenAppClassLoader_whenParentClassLoader_thenClassNotFoundException() throws Exception {
PrintClassLoader sampleClassLoader = (PrintClassLoader) Class.forName(PrintClassLoader.class.getName()).newInstance();
@@ -2,7 +2,7 @@ package com.baeldung.classnotfoundexception;
import org.junit.Test;
public class ClassNotFoundExceptionTest {
public class ClassNotFoundExceptionUnitTest {
@Test(expected = ClassNotFoundException.class)
public void givenNoDriversInClassPath_whenLoadDrivers_thenClassNotFoundException() throws ClassNotFoundException {