PicklesDoc.Pickles.ObjectModel.Mapper.MapToString C# (CSharp) Метод

MapToString() публичный Метод

public MapToString ( Gherkin.Ast cell ) : string
cell Gherkin.Ast
Результат string
        public string MapToString(G.TableCell cell)
        {
            return cell?.Value;
        }

Usage Example

        public void MapToStringTableCell_NullTableCell_ReturnsNull()
        {
            var mapper = new Mapper();

            string result = mapper.MapToString((G.TableCell)null);

            Check.That(result).IsNull();
        }