Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can the Lightweight Testing Automation Framework (LTAF) be used in Continuous Integration?

I'm interested in using the Lightweight Testing Automation Framework (LTAF) to create integration tests for my web application. However, I need it to be run on the build server. Does anyone know if this can set up to do this?

There does not seem to be a whole lot of information on the web on this right now :-)

like image 410
Joel Martinez Avatar asked Sep 04 '09 13:09

Joel Martinez


1 Answers

There's a blog post (Lightweight Test Automation Framework – Automated Build Support) that describes how to implement the runner as a console application, it can then be integrated into a build server fairly simply by redirecting the build output and setting the return code appropriately.

The author posted the code used in the article, you can download it from here.

like image 179
Rich Seller Avatar answered Nov 24 '22 09:11

Rich Seller