public DocumentationTemplateTests()
 {
     _softwareSystem = Model.AddSoftwareSystem("Name", "Description");
     _template       = new StructurizrDocumentationTemplate(Workspace);
     _documentation  = Workspace.Documentation;
 }
 public DocumentationTests()
 {
     _documentation = Workspace.Documentation;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Workspace" />class.
 /// </summary>
 /// <param name="Name">The name of the workspace..</param>
 /// <param name="Description">A short description of the workspace..</param>
 public Workspace(string name, string description) : base(name, description)
 {
     this.Model         = new Model();
     this.Views         = new ViewSet(Model);
     this.Documentation = new Documentation.Documentation(Model);
 }