All the same formatting

This commit is contained in:
Martijn van Dijk
2023-03-02 21:44:26 +01:00
parent c99052c726
commit e10fe3fb61
15 changed files with 788 additions and 951 deletions
+11 -14
View File
@@ -4,22 +4,19 @@ using System.Collections.Generic;
using xUnitRevitUtils;
namespace SampleLibrary {
public sealed class DocFixture : IDisposable
{
public Document Doc { get; set; }
public IList<Element> Walls { get; set; }
public sealed class DocFixture : IDisposable {
public Document Doc { get; set; }
public IList<Element> Walls { get; set; }
public DocFixture()
{
var testModel = Utils.GetTestModel("walls.rvt");
Doc = xru.OpenDoc(testModel);
public DocFixture() {
var testModel = Utils.GetTestModel("walls.rvt");
Doc = xru.OpenDoc(testModel);
Walls = new FilteredElementCollector(Doc).WhereElementIsNotElementType().OfCategory(BuiltInCategory.OST_Walls).ToElements();
Walls = new FilteredElementCollector(Doc).WhereElementIsNotElementType().OfCategory(BuiltInCategory.OST_Walls).ToElements();
}
public void Dispose() {
}
}
public void Dispose()
{
}
}
}