mirror of
https://github.com/opentripplanner/OpenTripPlanner.git
synced 2026-04-03 15:26:08 +02:00
15 lines
435 B
Java
15 lines
435 B
Java
package org.opentripplanner.netex.mapping;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.opentripplanner.core.model.id.FeedScopedId;
|
|
|
|
public class FeedScopedIdFactoryTest {
|
|
|
|
@Test
|
|
public void setFeedScope() {
|
|
FeedScopedId feedScopedId1 = MappingSupport.ID_FACTORY.createId("NSR:StopPlace:1");
|
|
assertEquals("F:NSR:StopPlace:1", feedScopedId1.toString());
|
|
}
|
|
}
|