IRIS Version >= 2024 Supported

Unit Test Viewer & Report Downloader

A simple and intuitive web application to help developers run InterSystems IRIS unit tests, view detailed results, and export clean HTML reports.

View Source
Testify Dashboard

Key Features

Smart Selection

Easily choose available unit test classes via an optimized dropdown menu.

Instant Execution

Run tests directly from the web interface and get immediate feedback on execution.

Analytics Dashboard

Visualize test trends and performance data with the built-in analytics dashboard.

Clean Reports

Download professional HTML test reports for your records or stakeholder analysis.

⚙️ Installation

Clone the Repository

git clone https://github.com/AshokThangavel/Testify.git
cd Testify

Running with Docker

docker-compose up --build

Once started, access the application at:
http://localhost:52773/csp/user/Testify.Home.cls

Technical Integration

To ensure results are displayed correctly, extend your test case classes from the Testify base class:

Class MyTest.Example extends Testify.UnitTest.TestCases {
    // Your test methods here
}