diff --git a/doc/homepage.html b/doc/homepage.html deleted file mode 100644 index ce4c92b3e128..000000000000 --- a/doc/homepage.html +++ /dev/null @@ -1,115 +0,0 @@ - - -JUnit - - - - -

JUnit

-

JUnit is a simple framework to write repeatable tests. It is an instance of -the xUnit architecture for unit testing frameworks. -

- -

-Getting Started

- -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: -

-

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.
-
-The following documents still describe JUnit 3.8. -
-
The JUnit 3.8 version of this homepage -
Test Infected - Programmers -Love Writing Tests -
    An article demonstrating the development process -with JUnit. - -
JUnit - A cooks tour -
- -

JUnit Related Projects/Sites

- -

Mailing Lists

-There are three junit mailing lists: - - -

Get Involved

- 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 is forged on - Sourceforge please use the tools provided for your submissions. - -
- JUnit source code is now hosted on GitHub. - -
- -hosted by SourceForge Logo - - - diff --git a/doc/index.htm b/doc/index.htm deleted file mode 100644 index dd19ff3383be..000000000000 --- a/doc/index.htm +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - JUnit Documentation - - - -

-JUnit Documentation

- -

-Kent Beck, Erich Gamma, David Saff

- -
-We have just begun documenting the new JUnit 4 architecture. The cookbook has already been updated. You can find the javadoc here. -The JUnit home page is here. -
- - diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index bb27a2fd4afd..bb8fe5e37cc3 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -128,15 +128,6 @@ - -Where can I find articles on - JUnit? -

- The JUnit home page maintains a list - of JUnit - articles. -

-
How is JUnit licensed? @@ -1708,14 +1699,6 @@ end Miscellaneous - - How do I integrate JUnit with my IDE? -

- The JUnit home page maintains a list of IDE integration - instructions. -

-
How do I launch a debugger when a test fails?