Bike.Test.ParserTest.Empty C# (CSharp) Метод

Empty() приватный Метод

private Empty ( ) : void
Результат void
        public void Empty()
        {
            ParseAndWalk("");
            ParseAndWalk("    ");
            ParseAndWalk("# This is a comment");
            ParseAndWalk("# This is # a comment");
            ParseAndWalk(@"#! This is a multiple line
                              comment
                           !# 'and a string';");
            ParseAndWalk(@"#! if (!filePath.ends('.cs')) return; !#");
        }