< Summary

Class:Itinero.IO.Osm.Tiles.Parsers.Semantics.TagMapperConfig
Assembly:Itinero.IO.Osm.Tiles
File(s):/home/runner/work/routing2/routing2/src/Itinero.IO.Osm.Tiles/Parsers/Semantics/TagMapperConfig.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:24
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0
Tag:224_14471318300

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_OsmKey()100%10%
get_Predicate()100%10%
get_ReverseMapping()100%10%

File(s)

/home/runner/work/routing2/routing2/src/Itinero.IO.Osm.Tiles/Parsers/Semantics/TagMapperConfig.cs

#LineLine coverage
 1using System.Collections.Generic;
 2
 3namespace Itinero.IO.Osm.Tiles.Parsers.Semantics;
 4
 5/// <summary>
 6/// Represents mapping configuration for a single tag.
 7/// </summary>
 8public class TagMapperConfig
 9{
 10    /// <summary>
 11    /// Gets or sets the osm key.
 12    /// </summary>
 013    public string OsmKey { get; set; }
 14
 15    /// <summary>
 16    /// Gets or sets the predicate.
 17    /// </summary>
 018    public string Predicate { get; set; }
 19
 20    /// <summary>
 21    /// Gets or sets the reverse mapping.
 22    /// </summary>
 023    public Dictionary<string, string> ReverseMapping { get; set; }
 24}