├── .gitattributes ├── .gitignore ├── README.md ├── appveyor.yml.deleteme ├── docs └── using_with_ci.md ├── images └── RTF_UI.PNG ├── lib ├── Microsoft.Practices.Prism.dll ├── Moq │ ├── Moq.dll │ └── Moq.xml ├── NDesk.Options.dll ├── NUnit │ ├── log4net.dll │ ├── nunit-console-runner.dll │ ├── nunit-gui-runner.dll │ ├── nunit.core.dll │ ├── nunit.core.interfaces.dll │ ├── nunit.framework.dll │ ├── nunit.framework.xml │ ├── nunit.uiexception.dll │ ├── nunit.uikit.dll │ └── nunit.util.dll └── RevitServices.dll ├── licenses.txt ├── src ├── Applications │ ├── RTFRevit │ │ ├── ConsoleOutInterceptor.cs │ │ ├── NUnitFrameworkResolver.cs │ │ ├── NUnitResultTypes.cs │ │ ├── NUnitResultTypes.xsd │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RTFRevit.csproj │ │ ├── RevitTestClient.cs │ │ ├── RevitTestExecutive.cs │ │ ├── RevitTestFramework.cs │ │ └── packages.config │ ├── RevitTestFrameworkApp │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RevitTestFrameworkConsole.csproj │ │ └── packages.config │ └── RevitTestFrameworkGUI │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Converters.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── RevitTestFrameworkGUI.csproj │ │ ├── RunnerViewModel.cs │ │ ├── TextBoxOutputter.cs │ │ ├── icon.ico │ │ └── packages.config ├── Config │ └── CS.props ├── FodyWeavers.xml ├── Framework │ ├── RevitTestFramework │ │ ├── AssemblyResolver.cs │ │ ├── Attributes.cs │ │ ├── CommonData.cs │ │ ├── IRTFSetup.cs │ │ ├── Messages.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RevitTestFramework.sln │ │ ├── RevitTestFrameworkTypes.csproj │ │ ├── TestListener.cs │ │ └── packages.config │ └── Runner │ │ ├── AddinHelpers.cs │ │ ├── AssemblyLoader.cs │ │ ├── DataTypes.cs │ │ ├── Interfaces.cs │ │ ├── NUnitResultTypes.cs │ │ ├── NUnitResultTypes.xsd │ │ ├── ObservableCollectionExtensions.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RevitTestServer.cs │ │ ├── Runner.cs │ │ ├── Runner.csproj │ │ ├── RunnerSetupData.cs │ │ ├── TestResultDeserializer.cs │ │ └── packages.config ├── RevitTestFramework.nuspec ├── RevitTestFramework.sln ├── RevitTestFramework.sln.DotSettings ├── TestSetup │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SampleTestsSetup.csproj │ └── Setup.cs └── Tests │ ├── RunnerTests │ ├── ParsingTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RunnerTests.cs │ └── RunnerTests.csproj │ └── Samples │ ├── Diagnostics.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SampleTests.csproj │ ├── SampleTests.dll.config │ ├── Samples.cs │ ├── bricks.rfa │ └── empty.rfa └── tools ├── Output └── RevitTestFrameworkInstaller2019.exe ├── RTFInstaller.iss └── StartVSForRevitDevBuild.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml.deleteme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/appveyor.yml.deleteme -------------------------------------------------------------------------------- /docs/using_with_ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/docs/using_with_ci.md -------------------------------------------------------------------------------- /images/RTF_UI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/images/RTF_UI.PNG -------------------------------------------------------------------------------- /lib/Microsoft.Practices.Prism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/Microsoft.Practices.Prism.dll -------------------------------------------------------------------------------- /lib/Moq/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/Moq/Moq.dll -------------------------------------------------------------------------------- /lib/Moq/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/Moq/Moq.xml -------------------------------------------------------------------------------- /lib/NDesk.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NDesk.Options.dll -------------------------------------------------------------------------------- /lib/NUnit/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/log4net.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit-console-runner.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit-gui-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit-gui-runner.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit.core.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit.framework.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit.framework.xml -------------------------------------------------------------------------------- /lib/NUnit/nunit.uiexception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit.uiexception.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit.uikit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit.uikit.dll -------------------------------------------------------------------------------- /lib/NUnit/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/NUnit/nunit.util.dll -------------------------------------------------------------------------------- /lib/RevitServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/lib/RevitServices.dll -------------------------------------------------------------------------------- /licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/licenses.txt -------------------------------------------------------------------------------- /src/Applications/RTFRevit/ConsoleOutInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/ConsoleOutInterceptor.cs -------------------------------------------------------------------------------- /src/Applications/RTFRevit/NUnitFrameworkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/NUnitFrameworkResolver.cs -------------------------------------------------------------------------------- /src/Applications/RTFRevit/NUnitResultTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/NUnitResultTypes.cs -------------------------------------------------------------------------------- /src/Applications/RTFRevit/NUnitResultTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/NUnitResultTypes.xsd -------------------------------------------------------------------------------- /src/Applications/RTFRevit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Applications/RTFRevit/RTFRevit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/RTFRevit.csproj -------------------------------------------------------------------------------- /src/Applications/RTFRevit/RevitTestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/RevitTestClient.cs -------------------------------------------------------------------------------- /src/Applications/RTFRevit/RevitTestExecutive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/RevitTestExecutive.cs -------------------------------------------------------------------------------- /src/Applications/RTFRevit/RevitTestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/RevitTestFramework.cs -------------------------------------------------------------------------------- /src/Applications/RTFRevit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RTFRevit/packages.config -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkApp/Program.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkApp/RevitTestFrameworkConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkApp/RevitTestFrameworkConsole.csproj -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkApp/packages.config -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/App.xaml -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/App.xaml.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/Converters.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/MainWindow.xaml -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/RevitTestFrameworkGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/RevitTestFrameworkGUI.csproj -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/RunnerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/RunnerViewModel.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/TextBoxOutputter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/TextBoxOutputter.cs -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/icon.ico -------------------------------------------------------------------------------- /src/Applications/RevitTestFrameworkGUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Applications/RevitTestFrameworkGUI/packages.config -------------------------------------------------------------------------------- /src/Config/CS.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Config/CS.props -------------------------------------------------------------------------------- /src/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/AssemblyResolver.cs -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/Attributes.cs -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/CommonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/CommonData.cs -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/IRTFSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/IRTFSetup.cs -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/Messages.cs -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/RevitTestFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/RevitTestFramework.sln -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/RevitTestFrameworkTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/RevitTestFrameworkTypes.csproj -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/TestListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/TestListener.cs -------------------------------------------------------------------------------- /src/Framework/RevitTestFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/RevitTestFramework/packages.config -------------------------------------------------------------------------------- /src/Framework/Runner/AddinHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/AddinHelpers.cs -------------------------------------------------------------------------------- /src/Framework/Runner/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/Framework/Runner/DataTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/DataTypes.cs -------------------------------------------------------------------------------- /src/Framework/Runner/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/Interfaces.cs -------------------------------------------------------------------------------- /src/Framework/Runner/NUnitResultTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/NUnitResultTypes.cs -------------------------------------------------------------------------------- /src/Framework/Runner/NUnitResultTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/NUnitResultTypes.xsd -------------------------------------------------------------------------------- /src/Framework/Runner/ObservableCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/ObservableCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Framework/Runner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Framework/Runner/RevitTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/RevitTestServer.cs -------------------------------------------------------------------------------- /src/Framework/Runner/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/Runner.cs -------------------------------------------------------------------------------- /src/Framework/Runner/Runner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/Runner.csproj -------------------------------------------------------------------------------- /src/Framework/Runner/RunnerSetupData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/RunnerSetupData.cs -------------------------------------------------------------------------------- /src/Framework/Runner/TestResultDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/TestResultDeserializer.cs -------------------------------------------------------------------------------- /src/Framework/Runner/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Framework/Runner/packages.config -------------------------------------------------------------------------------- /src/RevitTestFramework.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/RevitTestFramework.nuspec -------------------------------------------------------------------------------- /src/RevitTestFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/RevitTestFramework.sln -------------------------------------------------------------------------------- /src/RevitTestFramework.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/RevitTestFramework.sln.DotSettings -------------------------------------------------------------------------------- /src/TestSetup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/TestSetup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestSetup/SampleTestsSetup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/TestSetup/SampleTestsSetup.csproj -------------------------------------------------------------------------------- /src/TestSetup/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/TestSetup/Setup.cs -------------------------------------------------------------------------------- /src/Tests/RunnerTests/ParsingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/RunnerTests/ParsingTests.cs -------------------------------------------------------------------------------- /src/Tests/RunnerTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/RunnerTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/RunnerTests/RunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/RunnerTests/RunnerTests.cs -------------------------------------------------------------------------------- /src/Tests/RunnerTests/RunnerTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/RunnerTests/RunnerTests.csproj -------------------------------------------------------------------------------- /src/Tests/Samples/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/Samples/Diagnostics.cs -------------------------------------------------------------------------------- /src/Tests/Samples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/Samples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/Samples/SampleTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/Samples/SampleTests.csproj -------------------------------------------------------------------------------- /src/Tests/Samples/SampleTests.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/Samples/SampleTests.dll.config -------------------------------------------------------------------------------- /src/Tests/Samples/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/Samples/Samples.cs -------------------------------------------------------------------------------- /src/Tests/Samples/bricks.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/Samples/bricks.rfa -------------------------------------------------------------------------------- /src/Tests/Samples/empty.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/src/Tests/Samples/empty.rfa -------------------------------------------------------------------------------- /tools/Output/RevitTestFrameworkInstaller2019.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/tools/Output/RevitTestFrameworkInstaller2019.exe -------------------------------------------------------------------------------- /tools/RTFInstaller.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/tools/RTFInstaller.iss -------------------------------------------------------------------------------- /tools/StartVSForRevitDevBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamoDS/RevitTestFramework/HEAD/tools/StartVSForRevitDevBuild.bat --------------------------------------------------------------------------------