Hi All

I just posted a new version of jfaTesting which include
- JDBC log and undo driver integrated.
- New UI
- New web host, does not required user to register

About JDBC log and undo
JDBC log and undo is a wrapper around any other jdbc driver, the wrapper jdbc driver keep a log of SQL statement, containing:
- The SQL statement text
- Statement parameters.
- For query statement, the result set that the statement return.
- For update statement, the previous values of the modified records.
The package also contains a GUI viewer that can be used to view this information, from any station in real time.

In addition there is a possibility to undo those database operation so the database can be restored to its original state without the need for long full restore process. The undo feature is very useful during development stage.
JDBC log and undo can be run as a stand alone program or integrated with jfaTesting to enable easy debug and test of code that depends on the database state.

About jfaTesting:
jfaTesting is an open source framework for writing unit tests for Java. The package includes a command line tool to enable fast debugging of a Java code and a GUI tool to enable regression test. The package automatically compares the test result with previously saved "Base" test result to determine if test has been passed or failed. jfaTesting offer automatic test code reloading. To change test codes or add a new one all you need is to write the code and save. jfaTesting will identify the change, compile the code and reload it before the next run.

In addition to the standard Java unit testing the package offers a tight integration with JOnAS. This integration help in the development process of enterprise beans by, providing a framework for writing code to access the beans, automatic beans reload after beans code changed and an option to run the application server locally (Client test code and the JOnAS server running on the same JVM and communicate on the same thread without RMI) simplify debugging by enables you easily trace from the client code to the beans code using your favorite debugger.

jfaTesting can also be used in remote mode to test EJB installed on remote server (Any server not just JOnAS) this enable you to check your EJB on other servers to perform performance and compatibilities test between servers.

You can download those packages at http://www.jfatesting.atfreeweb.com

Regards,

Muly.

Reply via email to