The Internet Archive discovers and captures web pages through many different web crawls.
At any given time several distinct crawls are running, some for months, and some every day or longer.
View the web archive through the Wayback Machine.
To get started with unit testing and JUnit read the article:
JUnit Cookbook.
This article describes basic test writing using JUnit 4.
You find additional samples in the org.junit.samples package:
SimpleTest.java - some simple test cases
VectorTest.java - test cases for java.util.Vector
JUnit 4.x only comes with a textual TestRunner. For graphical feedback,
most major IDE's support
JUnit 4. If necessary, you can run JUnit 4 tests in a JUnit 3
environment by adding the following method to each test class:
public static Test suite() {
return new JUnit4TestAdapter(ThisClass.class);
}
Documentation
JUnit Cookbook A cookbook for implementing tests with JUnit.
Javadoc API documentation generated with javadoc.
Frequently asked questions Some frequently asked questions about using JUnit.
Release notes Latest JUnit release notes
License The terms of the common public license used for JUnit.
junit.org - a site for software
developers using JUnit. It provides instructions for how to integrate JUnit
with development tools like JBuilder and VisualAge/Java. As well as articles
about and extensions to JUnit.
XProgramming.com -
various implementations of the xUnit testing framework architecture.
JUnit celebrates programmers testing their own software. As a result
bugs, patches, and feature requests which include JUnit TestCases have a
better
chance of being addressed than those without.
JUnit source code is now hosted on GitHub.
hosted by