Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automated/unit testing of Vbscript

I have a program with a COM API. I have a suite of functional tests using Python, but I want to provide a suite of VBscript code samples, and I'd like to test this suite of code automatically.

Is there a tool I can use to run a suite of VBscript tests without interaction, and collect pass/fail and timing statistics?

like image 473
Ryan Ginstrom Avatar asked Dec 08 '10 07:12

Ryan Ginstrom


1 Answers

I found a test runner for vbscript, ScriptUnit.

It can be run without the GUI using the /Q option, so it looks like this one will fit the bill.

alt text

like image 189
Ryan Ginstrom Avatar answered Sep 21 '22 06:09

Ryan Ginstrom