Can a lightweight test automation system (LTAF) be used in continuous integration?

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

There is not much information on the Internet right now :-)

+5
source share
2 answers

There is a blog post ( Lightweight Test Automation System - Auto Build Support ) that describes how to implement the runner as a console application, it can then be easily integrated into the build server by redirecting the build output and setting the return code accordingly.

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

+5
source

I have no experience with LTAF, but found this nice article:

First steps with a simplified test automation system

Quote from the author (Steve Sanderson, from the comments):

( , ) , . , , , , Selenium RC, , , -.

+1

All Articles