A simple and intuitive web application to help developers run InterSystems IRIS unit tests, view detailed results, and export clean HTML reports.
View SourceEasily choose available unit test classes via an optimized dropdown menu.
Run tests directly from the web interface and get immediate feedback on execution.
Visualize test trends and performance data with the built-in analytics dashboard.
Download professional HTML test reports for your records or stakeholder analysis.
git clone https://github.com/AshokThangavel/Testify.git
cd Testify
docker-compose up --build
Once started, access the application at:
http://localhost:52773/csp/user/Testify.Home.cls
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
}