private void AppendTestFactoryTitle([NotNull] IncludedTestFactory test) { XmlElement row = CreateTableRow(); XmlElement cell = CreateTableCell(test.Title, 3, test.Obsolete ? "obsoleteTitle" : "title"); row.AppendChild(cell); cell.AppendChild(CreateAnchor(test.Key)); _htmlTable.AppendChild(row); }
public void IncludeTestFactory(Type testFactoryType) { var testFactory = new IncludedTestFactory(testFactoryType); if (!_includeObsolete && testFactory.Obsolete) { return; } if (testFactory.InternallyUsed) { return; } _includedTestFactories.Add(testFactory); }
public TestFactoryIndexEntry([NotNull] IncludedTestFactory includedTestFactory) : base(includedTestFactory) { }