Merge pull request #7485 from amit2103/BAEL-16045-16

[BAEL-16045] - Check Article Code Matches GitHub for https://www.bael…
This commit is contained in:
Loredana Crusoveanu
2019-10-14 22:20:30 +03:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -46,7 +46,7 @@ public class EmployeeMapperUnitTest {
}
@Test
public void givenEmployeeDTOwithNestedMappingToEmployee_whenMaps_thenCorrect() {
public void givenEmpDTONestedMappingToEmp_whenMaps_thenCorrect() {
EmployeeDTO dto = new EmployeeDTO();
dto.setDivision(new DivisionDTO(1, "Division1"));
@@ -102,7 +102,7 @@ public class EmployeeMapperUnitTest {
}
@Test
public void givenEmployeeWithStartDateMappingToEmployeeDTO_whenMaps_thenCorrect() throws ParseException {
public void givenEmpStartDtMappingToEmpDTO_whenMaps_thenCorrect() throws ParseException {
Employee entity = new Employee();
entity.setStartDt(new Date());
@@ -112,7 +112,7 @@ public class EmployeeMapperUnitTest {
}
@Test
public void givenEmployeeDTOWithStartDateMappingToEmployee_whenMaps_thenCorrect() throws ParseException {
public void givenEmpDTOStartDtMappingToEmp_whenMaps_thenCorrect() throws ParseException {
EmployeeDTO dto = new EmployeeDTO();
dto.setEmployeeStartDt("01-04-2016 01:00:00");

View File

@@ -18,7 +18,7 @@ public class SimpleSourceDestinationMapperIntegrationTest {
SimpleSourceDestinationMapper simpleSourceDestinationMapper;
@Test
public void givenSimpleSourceToSimpleDestination_whenMaps_thenCorrect() {
public void givenSourceToDestination_whenMaps_thenCorrect() {
SimpleSource simpleSource = new SimpleSource();
simpleSource.setName("SourceName");
simpleSource.setDescription("SourceDescription");
@@ -30,7 +30,7 @@ public class SimpleSourceDestinationMapperIntegrationTest {
}
@Test
public void givenSimpleDestinationToSourceDestination_whenMaps_thenCorrect() {
public void givenDestinationToSource_whenMaps_thenCorrect() {
SimpleDestination destination = new SimpleDestination();
destination.setName("DestinationName");
destination.setDescription("DestinationDescription");