Skip to content
Luiz Henrique Cassettari edited this page Dec 26, 2024 · 10 revisions

Welcome to the ricaun.RevitTest wiki!

Sample

Start testing with the RevitTest.Sample project.

WorkFlow

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
Loading
  • 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.

RevitTest

Application

Command

Console

Shared

TestAdapter

Clone this wiki locally