示例#1
0
        public AllTopicsTag(string fileUrl, ProjectRoot root)
        {
            AddClass("table");

            AddHeaderRow(tr => {
                tr.Header("Title");
                tr.Header("Key");
                tr.Header("File");
            });

            if (root.Splash != null)
            {
                addTopic(fileUrl, root.Splash);
            }

            root.AllTopics().Each(x => addTopic(fileUrl, x));
        }
 public void splash_is_not_in_all_topics_for_the_project()
 {
     fubudocs.AllTopics().ShouldNotContain(splashTopic);
 }