Hi, I'm writing a test whose purpose is to make sure that a Hashtable contains a certain set of keys. Basically, the test will make sure that someone filling ...
Hello. I have been using junit successfully for several weeks, but have only been able to run tests which I locate directly below junit itself. I'm tired of...
... No, it's not that. If JBuilder's compiler flipped the static bit on a method as would be necessary for this problem to occur, then there would be horrible...
Pankaj I know nothing about AS/400, so this may or may not apply. Assuming you have a conversion object (EBCDIC -> ASCII or vice versa), you could do something...
I downloaded junit3.7.zip from Sourceforge, unzipped it, and put the junit.jar file in my CLASSPATH. But I got errors when I tried to compile code with the new...
Hi, Whether anybody knows how to write test cases and test script for conversion of EBCDIC to ASCII and ASCII to EBCDIC for AS/400 using JUnit3.7 tool ? Plz...
Hello, Was wondering if there exists a JUnit extension that allows JUnit to run tests every x minutes (every eg 30 minutes). Preferable this would run in a...
Can anyone tell me what is with this error? I'm an old C++ programmer but a newbie to jUnit and Java. My classpath appears to be correct. The complete error...
... JTS ... required". ... database ... Actually, in the terminology of transaction services, nested transactions *are* subtransactions. What was being...
First, on the Map v. HashMap v. Hashtable issue, let me say that I agree with the existing replies. Let me add, however, that one should code to the Map...
... subtransaction-aware ... you're totally right ! As i've dived into several specification documents (not comments about them), i've discovered that OTS...
I am looking for others who are teaching classes on the use of JUnit, Ant and Cactus. I would appreciated any information you can provide me on organizations...
... nested ... Sounds ... or ... OTS subtransactions are very different from top-level transactions. Resources are not consulted and no two-phase commit...
Hi all, I am a newcomer to testing world.I will be using JUnit3.7 tool for unit testing. At present my assignment is to write unit test release procedure. Will...
A while ago I had an email conversation with Bruce Vinchon regarding database testing. I said I'd mention something we discussed on this mailing list so here...
... No. What you'd like to do has nothing to do with JUnit. Unless using a UI-based test runner is important to you, simply find any software that can schedule...
Hi, I am using jakarta ant version 1.3 with junit 3.7. I have an ant task as defined. <target name="runtests"> <junit fork="no" printsummary="yes"> <formatter...
Hi! In my tests, I'm modifying a value in a HashMap and then making sure the value has indeed been modified. If I use "assertSame" the test fails, but if I use...
Hi there, I'm trying to use HTTPUnit to setup some client side tests. In particular I want to use it to test the presence/absence of certain elements on the...
Hi there! I have heard about CppUnit or something like that: a testing framework written in C++ to test C++ programs ! Does it exist ? Where can I download it...
Hi How does one test the functionality of Web-sites,like Submit buttons ? When I do a submit,I want to make sure that the next page is displayed correctly. ...
I'm evaluating using Junit++ for some of our testing tasks, and I have run into a problem. I have a ConfigurableTestCase that works fine when I run it by it's...
I am trying to use JUnit to test a method which calls Class.forName("myClassName") however I get a ClassNotFoundException from this line of code, which works...
I'm currently compiling a list of open source and commercial software for unit testing (and support) in Java. The current contents: - JUnit and all extensions...
The JUnitTest Infected article alludes to using anonymous inner classes for running single tests. I can't get this to work. I don't understand where to put...