TextParserTests ParseWithUnsupportedCharacters Method Delta Engine Documentation

Namespace: DeltaEngine.Rendering2D.Fonts.Tests
Assembly: DeltaEngine.Rendering2D.Fonts.Tests (in DeltaEngine.Rendering2D.Fonts.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void ParseWithUnsupportedCharacters()
Examples

[Test]
public void ParseWithUnsupportedCharacters()
{
    var lines = parser.GetLines("äöüÄÖÜ");
    Assert.AreEqual(1, lines.Count);
    Assert.AreEqual(GetSpaces(6), new string(lines[0].ToArray()));
}
See Also