Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there something like ZenTest/Autotest for Java and JUnit

I've used ZenTest and autotest to work on Ruby projects before, and I used to using them for test-driven development a la this configuration. I have a project that I'm currently working on in Java, and I was wondering if there is something similar in the Java world to achieve the same effect.

like image 253
Nate Smith Avatar asked Sep 26 '08 00:09

Nate Smith


People also ask

Is Cactus testing framework for Java?

Cactus is a simple test framework for unit testing server-side Java code (Servlets, EJBs, Tag libs, ...) from the Jakarta Project. The intent of Cactus is to lower the cost of writing tests for server-side code. It uses JUnit and extends it.

What are the unit testing plugin supported for Java and .NET projects?

TestNG. It is an open-source tool, which supports Java and . Net programming languages. Test Next Generation (TestNG) is an advance unit testing tool, which is stimulated from JUnit and NUnit testing frameworks.

What does .test do in Java?

Java testing provides thorough and functioning test cases that can test every aspect of your application. A JUnit test case is exactly what it sounds like: a test scenario measuring functionality across a set of actions or conditions to verify the expected result. JUnit is a simple framework to write repeatable tests.

What is difference between TestNG and JUnit?

JUnit is a framework that is open-source and may be used to write and trigger tests. TestNG is a Java-based framework that provides an improved way to run tests. Advanced annotation is not supported. It is capable of supporting more advanced annotation.


1 Answers

Might I also suggest Infinitest, it is under active development and works with other languages besides Java. I believe it works fine with Scala, but I haven't had much luck using it with Groovy.

It is free for personal use and is being developed by Improving.

like image 111
Chad Gorshing Avatar answered Oct 13 '22 22:10

Chad Gorshing