Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 31224
  • Category: Java
  • Founded: Nov 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
  Newest  |  < Newer  |  Older >  |  Oldest
Topics Messages Latest Post

The closest thing to that that I've seen is Joshua, a JINI based JUnit framework, but it looks dead. ...
13 Aug 15, 2002
1:39 pm

mparaz
Send Email

Hi guys. I was wondering if anyone has ever investigated the possibility of using a custom classloader to transparantly (to the tested code) provide non...
2 Aug 14, 2002
10:05 pm

Mike Clark
clarkware
Send Email

Dear Sir We have just starting using java we trying to import our existing application from Visual studio to java platform we need some suggestions to choose...
3 Aug 14, 2002
8:59 pm

J. B. Rainsberger
nails762
Send Email

Hi everybody on this list, yesterday I finished my third junit-test-first project. It is amazing: The software runs as expected after deployed on the clients...
2 Aug 14, 2002
8:59 pm

J. B. Rainsberger
nails762
Send Email

Sounds like a classpath issue. ... -- Jason Rogers jacaetevha@......
4 Aug 14, 2002
8:57 pm

J. B. Rainsberger
nails762
Send Email

You guys might be able to help me. I want to be able to determine dynamically the number of tests that should be run. I have a number of tests to run that...
2 Aug 14, 2002
3:52 pm

Timothy Wall
twall@...
Send Email

Hello, I am a beginner to the JUnit framework. I didn't understand an issue about the theory of JUnit. The test methods defined in a TestCase class are...
2 Aug 13, 2002
3:26 pm

Jason Rogers
jacaetev
Send Email

Hello Guys This is LP from Japan. I am writing applets , i want to unit test it with classes. Can i use JUnit framework for that . If( yes ){ 1. how ?? 2. can...
6 Aug 13, 2002
1:31 pm

lpsingh
lp_infinium
Send Email

Hi, I have built a set of screens using tdk for maintaining a database. Tdk has generated the OM files for each of the tables, which i have modified later, for...
1 Aug 13, 2002
1:31 pm

neet_g
Send Email

I wonder if list members might wish to share current strategies for unit testing of EJB, particularly CMP Entity Beans. I'm aware of Cactus, and have tested...
4 Aug 13, 2002
7:28 am

Vincent Massol
vmassol
Send Email

I will be out of the office starting 08/12/2002 and will not return until 08/14/2002. I will respond to your message when I return....
1 Aug 13, 2002
3:03 am

Samuel Goldberg
goldbes02446
Send Email

FYI. ... Subject: [TDD] [CFP] OOPSLA 2002 Unit Testing Workshop Date: Mon, 12 Aug 2002 08:38:23 +0200 From: Joseph Pelrine <jpelrine@...> Reply-To:...
1 Aug 12, 2002
2:44 pm

Mike Clark
clarkware
Send Email

Hey all, First off, if this is the wrong place to ask this, could you point me to the right place? I am just starting up trying to get some junit tests put...
4 Aug 9, 2002
4:01 pm

Jason Rogers
jacaetev
Send Email

Ok...I posted my (ugly) implementation of a test suite builder. It just runs through the classpath looking for classes that are derived from TestCase, and...
1 Aug 9, 2002
12:31 pm

ericheikkila
Send Email

It is not trivial to discover classes in the classpath that are not yet loaded, let alone discovering such classes that implement/extend a specific type. At...
1 Aug 9, 2002
12:11 pm

Mark Meyers
markm@...
Send Email

I don't think that would be wise. That would then couple the framework to your business object. You would pass your object into the test suite, which would...
1 Aug 9, 2002
11:23 am

Jason Rogers
jacaetev
Send Email

Writing a TestSuiteBuilder that uses reflection might be a good idea, but wouldn't it be better if the functionality we need was built into JUnit? Could we add...
1 Aug 9, 2002
7:15 am

james.dobson@...
jimbobdobson
Send Email

Of course, you could have a utility class, like a TestSuiteBuilder, that will scan the classpath via reflection and build up the test suite. The code is...
1 Aug 9, 2002
5:49 am

Jason Rogers
jacaetev
Send Email

Hi Everyone, Is it possible to automatically add all the tests of a test class to a suite without using 'suite.addTestSuite(MyTest.class)'? I have a test class...
2 Aug 8, 2002
5:52 am

J. B. Rainsberger
nails762
Send Email

This sounds like a good approach but still it couples the test class and the components it must test. In the future should I create a new component I will...
2 Aug 7, 2002
3:17 pm

Jason Rogers
jacaetev
Send Email

What about some reflection ? (note argumentTypes can easily made from arguments, and classes could be dynamicaly found, but that is not so simple) Jason's...
2 Aug 7, 2002
3:06 pm

Jason Rogers
jacaetev
Send Email

A little cleaner approach would be to set them in lists and have the tests iterate over the lists. Each test method then iterates over the list of Components...
1 Aug 7, 2002
1:41 pm

Jason Rogers
jacaetev
Send Email

That was my first thought as well, and the solution I currently have. But consider this...... You can instantiate a JTextField 5 different ways and a...
2 Aug 7, 2002
1:17 pm

Kirill Maximov
maxkir1
Send Email

You are right. I was just checking for an easy (lazy?) solution to my problem. As a matter of fact I am creating an API! Good guess. And all constructors ...
1 Aug 7, 2002
1:06 pm

james.dobson@...
jimbobdobson
Send Email

The 'N problem' exists because Sun wants users of Java to have some choices. As long as you are implementing custom solutions for your software, why not ...
1 Aug 7, 2002
12:55 pm

Mark Meyers
markm@...
Send Email

Sorry, Misunderstood, probably RTFM (Reda The F***ing Mail) syndrome on my part. What I think is the issue is that you should have an abstract test case ...
2 Aug 7, 2002
12:49 pm

Robert Wenner
robert@...
Send Email

Hi Mark, Maybe I missed the point: I thought that the constructor of TestSuite took a class, but that class should contain some tests. In my situation I have...
2 Aug 7, 2002
12:05 pm

Kirill Maximov
maxkir1
Send Email

I don't think that the mechanism you want is ther, but it looks like it would be easy, and useful, to add to the framework... ... ...
1 Aug 7, 2002
11:54 am

Phil Lewis
philkms66
Send Email

public static Test suite() { TestSuite suite = new TestSuite(); suite.addTest(new TestSuite(ChildA.class)); suite.addTest(new TestSuite(ChildB.class)); return...
1 Aug 7, 2002
10:46 am

Mark Meyers
markm@...
Send Email

I am new to junit.Please tell me what test case i must write for the follwing code using junit. package Gic; import java.sql.*; import java.awt.*; public class...
4 Aug 6, 2002
7:12 am

J. B. Rainsberger
nails762
Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help