-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Luiz Henrique Cassettari edited this page Dec 26, 2024
·
10 revisions
Welcome to the ricaun.RevitTest wiki!
Start testing with the RevitTest.Sample project.
The ricaun.RevitTest Framework is composed by 3 projects:
---
title: ricaun.RevitTest
---
flowchart LR
dll(dll)
TestAdapter[TestAdapter]
Console[Console]
Application[Application]
dll--dotnet test-->TestAdapter
TestAdapter--Start-->Console
Console--Run Tests-->Application
Console-.Open/Close.-Revit
subgraph Revit [Revit]
Application
end
-
TestAdapter: The NUnit TestAdapter is responsible for executing the
Console
and waits for the tests results. -
Console: The Console application responsible for communicating with Revit, installing the
Application
, and opening/closing Revit. -
Application: The Revit Plugin application is responsible for executing the tests sent by
Console
.