Ancestry.Daisy.Tests.Daisy.Unit.Language.WhitespaceEaterTests.ItCountsIndents C# (CSharp) Method

ItCountsIndents() private method

private ItCountsIndents ( string line ) : int
line string
return int
        public int ItCountsIndents(string line)
        {
            var sut = new WhitespaceEater();
            return sut.Eat(line, 1).Indents;
        }