Commit 90551b09 authored by Noel Alonso's avatar Noel Alonso
Browse files

Cambia referencia a utilidad movida a test-utils

parent 69e6fb47
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
package es.redmic.atlaslib.events.layer.partialupdate.themeinspire;

/*-
 * #%L
 * Atlas-lib
 * %%
 * Copyright (C) 2019 REDMIC Project / Server
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import java.util.UUID;

import org.apache.avro.Schema;
+2 −2
Original line number Diff line number Diff line
@@ -28,10 +28,10 @@ import org.json.JSONException;
import org.junit.Test;

import es.redmic.atlaslib.dto.category.CategoryDTO;
import es.redmic.atlaslib.unit.utils.AtlasAvroBaseTest;
import es.redmic.atlaslib.unit.utils.CategoryDataUtil;
import es.redmic.testutils.utils.AvroBaseTest;

public class CategoryCheckAvroSchemaTest extends AtlasAvroBaseTest {
public class CategoryCheckAvroSchemaTest extends AvroBaseTest {

	@Test
	public void serializeAndDeserialize_IsSuccessful_IfSchemaAndDataAreCorrect() throws JSONException {
+2 −2
Original line number Diff line number Diff line
@@ -27,10 +27,10 @@ import org.junit.Test;
import org.skyscreamer.jsonassert.JSONAssert;

import es.redmic.atlaslib.dto.layer.LayerDTO;
import es.redmic.atlaslib.unit.utils.AtlasAvroBaseTest;
import es.redmic.atlaslib.unit.utils.LayerDataUtil;
import es.redmic.testutils.utils.AvroBaseTest;

public class LayerCheckAvroSchemaTest extends AtlasAvroBaseTest {
public class LayerCheckAvroSchemaTest extends AvroBaseTest {

	@Test
	public void serializeAndDeserialize_IsSuccessful_IfSchemaAndDataAreCorrect() throws JSONException {
+2 −2
Original line number Diff line number Diff line
@@ -27,10 +27,10 @@ import org.junit.Test;
import org.skyscreamer.jsonassert.JSONAssert;

import es.redmic.atlaslib.dto.layerwms.LayerWMSDTO;
import es.redmic.atlaslib.unit.utils.AtlasAvroBaseTest;
import es.redmic.atlaslib.unit.utils.LayerDataUtil;
import es.redmic.testutils.utils.AvroBaseTest;

public class LayerWMSCheckAvroSchemaTest extends AtlasAvroBaseTest {
public class LayerWMSCheckAvroSchemaTest extends AvroBaseTest {

	@Test
	public void serializeAndDeserialize_IsSuccessful_IfSchemaAndDataAreCorrect() throws JSONException {
+2 −2
Original line number Diff line number Diff line
@@ -26,10 +26,10 @@ import static org.junit.Assert.assertTrue;
import org.junit.Test;

import es.redmic.atlaslib.dto.themeinspire.ThemeInspireDTO;
import es.redmic.atlaslib.unit.utils.AtlasAvroBaseTest;
import es.redmic.atlaslib.unit.utils.ThemeInspireDataUtil;
import es.redmic.testutils.utils.AvroBaseTest;

public class ThemeInspireCheckAvroSchemaTest extends AtlasAvroBaseTest {
public class ThemeInspireCheckAvroSchemaTest extends AvroBaseTest {

	@Test
	public void serializeAndDeserialize_IsSuccessful_IfSchemaAndDataAreCorrect() {
Loading