예제 #1
0
 public void GetIndentationSize_Spaces3Then6()
 {
     var l = new YamlLexer();
     int actual = l.GetIndentationSize("   ");
     Assert.AreEqual(1, actual);
     actual = l.GetIndentationSize("      ");
     Assert.AreEqual(2, actual);
 }
예제 #2
0
 public void GetIndentationSize_BlankString()
 {
     var l = new YamlLexer();
     int actual = l.GetIndentationSize("");
     Assert.AreEqual(0, actual);
 }