FindSpecNode() 공개 메소드

public FindSpecNode ( Serenity.Jasmine.SpecPath path ) : ISpecNode
path Serenity.Jasmine.SpecPath
리턴 ISpecNode
예제 #1
0
        public HtmlDocument Spec(SpecPath path)
        {
            _document.Title = Title + ":  " + path.Parts.Join("/");

            var node = _specifications.FindSpecNode(path);

            writeNode(node);

            return(_document);
        }