Wikipedia:

Mauve

(test suite)
Mauve
OS: Java virtual machine
Genre: Test Suite
License: GNU General Public License
Website: http://www.sourceware.org/mauve/

Mauve is a project to provide a free software test suite for the Java class libraries. Mauve is developed by the members of Kaffe, GNU Classpath, GCJ, and other projects. Unlike a similar project, JUnit, Mauve is designed to run on various experimental Java virtual machines, where some features may be still missing. Because of this, Mauve does not discover the testing method by name, as JUnit does. Mauve can also be used to test the user java application, not just the core class library. This testing suite is originally implemented as an Ant module. Mauve is released under GNU General Public License.

Example

The "Hello world" example in Mauve:

 //Tags: JDK1.4
 public class HelloWorld implements Testlet
 {
   // Test if 3*2=6
   public void test(TestHarness harness)
   {
     harness.check(3*2, 6, "Multiplication failed.");    
   }
 }

Compare with the similar example for JUnit.

See also

Technology Compatibility Kit

External links


 
 
 

Join the WikiAnswers Q&A community. Post a question or answer questions about "Mauve" at WikiAnswers.

 

Copyrights:

Wikipedia. This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Mauve (test suite)" Read more

Search for answers directly from your browser with the FREE Answers.com Toolbar!  
Click here to download now. 

Get Answers your way! Check out all our free tools and products.

On this page:   E-mail   print Print  Link  

 

Tackle These

Keep Reading

Mentioned In: