I have a feeling I'm about to bring up a much discussed topic, however, I wasn't able to find any related topics by searching this mailing list. My apologies...
I was very exciting to know that JUnit 4 has Parameterized feature. I have used almost exact the same mechanism in JUnit 3.8 for making the parametrized test....
In JUnit 3.8 there was difference between assertion error (assertTrue(flag) fails, for example) and exception (unexpected exception thrown). It was indicated...
In the @Test annotation there is expected() parameters that is used to indicate expected exception. It should be considered to enable check also the cause of...
Request class has method public static Request method(Class<?> clazz, String methodName); which suppose to run only methodName from the class. I think it would...
I want to correct my last e-mail in this Thread. Test method of calculator should be public void testNegative() throws Exception { try { calc.sqrt(-1); ...
AFAIK this feature is replacement to TestSuite in JUnit 3.8. But it is less flexible then TestSuite. In JUnit 3.8 you have an option to add some methods from...
Hi there. I know this is not the really correct place for this, but what I actually need is an advice from people who are in the unit testing business in JAVA...
I just uploaded an update to the Dependent Object Framework (DOF) http://sourceforge.net/projects/dof/ Description: http://www.junit.org/node/308 In a...
I've written a collection of JUnit4 tests that run fine within Eclipse. I'm working on adding an Ant target to our build.xml file to run the entire collection...
Hi All, Bumblebee 0.4 is just released, and can be found here: http://www.agical.com/bumblebee/bumblebee_doc.html Bumblebee is a free (Apache 2 license) open...
Hi all, I've been unit testing my data access layer with Junit and I ran into following case.. I was able to successfully mock the db connection for checking...
Hi, I am fairly new to JUnit and am on a development team that is about to start using JUnit. We are considering writing our initial tests with JUnit 3 (which...
I'm wondering if any one is using junit4 with cactus. What I heard so far is there is no support for Junit4 in cactus. But there should be some work around. If...
Hello junit users I started using junit in my projects recently. Twice in two days, I have found a use for something which junit doesn't seem to provide. I ...
Currently generating junit reports (*.txt and *.xml files) using maven- surefire-plugin. Wondering is there way to display these reports in HTML format? Thanks...
Hello, Currenlty Junit prints all details into the log and the log file grows to fast and big. So wondering is there a way to control [suppressing] the details...
hi friends ; i'm using NetBeans as my development environment and i'm having an abstract parent class caled "Vehicle" that has been inherited by o3 sub clases...
Hello Everyone, I am interested if the "annotated description" feature can get the javadoc method description and adding a textual description to its relative...
Does anyone have any recommendations on how they arrange/group their jUnit tests? I've poked around the net but haven't gotten much in this category... The...
Hi, I'm new to JUnit 4 testing and I have a question about its execution. If I have one simple test class like this: public class Test { public static MyClass...
Hi, I am interested in gathering insight into executing and managing tests where the environment is a possibly large set of virtualized (ie, VMWare) machines...
Hey, there! I'm hoping someone on this end of the world can answer a question for me. I tried posting this on the Maven mailing list but haven't gotten any...