CopyTest.java 1.62 KB
Newer Older
Matthias Betz's avatar
Matthias Betz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*-
 *  Copyright 2020 Beuth Hochschule für Technik Berlin, Hochschule für Technik Stuttgart
 * 
 *  This file is part of CityDoctor2.
 *
 *  CityDoctor2 is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  CityDoctor2 is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with CityDoctor2.  If not, see <https://www.gnu.org/licenses/>.
 */
package de.hft.stuttgart.citydoctor2.utils;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotSame;

import org.junit.Test;

import de.hft.stuttgart.citydoctor2.datastructure.Geometry;
import de.hft.stuttgart.citydoctor2.datastructure.GeometryTestUtils;
import de.hft.stuttgart.citydoctor2.datastructure.GeometryType;
Matthias Betz's avatar
Matthias Betz committed
29
import de.hft.stuttgart.citydoctor2.datastructure.GmlId;
Matthias Betz's avatar
Matthias Betz committed
30
31
32
33
34
35

public class CopyTest {
	
	@Test
	public void testCopy() {
		Geometry geometry = GeometryTestUtils.createDummyGeometry(GeometryType.COMPOSITE_SURFACE);
Matthias Betz's avatar
Matthias Betz committed
36
		geometry.setGmlId(new GmlId("test"));
Matthias Betz's avatar
Matthias Betz committed
37
38
39
40
41
42
43
44
		Geometry copy = Copy.copy(geometry);
		assertEquals(geometry.getType(), copy.getType());
		assertEquals(geometry.getLod(), copy.getLod());
		assertEquals(geometry.getGmlId(), copy.getGmlId());
		assertNotSame(geometry, copy);
	}

}