Skip to content
This repository was archived by the owner on Apr 7, 2022. It is now read-only.

Commit c0609a6

Browse files
committed
Update site (remove HttpUnit references).
1 parent 3c69264 commit c0609a6

7 files changed

Lines changed: 6 additions & 65 deletions

File tree

-306 Bytes
Binary file not shown.
-5.78 KB
Loading

src/site/site.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@
2323
<links>
2424
<item name="JUnit" href="http://www.junit.org" />
2525
<item name="Maven" href="http://maven.apache.org" />
26-
<item name="HTTPUnit"
27-
href="http://httpunit.sourceforge.net" />
2826
<item name="HTMLUnit"
2927
href="http://htmlunit.sourceforge.net" />
30-
<item name="Jacobie" href="http://jacobie.sourceforge.net" />
3128
<item name="Selenium" href="http://openqa.org/selenium-rc/" />
3229
</links>
3330
<menu name="jWebUnit">
@@ -56,15 +53,6 @@
5653
</item>
5754
</menu>
5855
<menu name="Building jWebUnit">
59-
<item name="With Ant" href="/building-ant.html"
60-
collapse="true">
61-
<item name="Installing Ant"
62-
href="/building-ant.html#Installing_Ant" />
63-
<item name="Building jWebUnit"
64-
href="/building-ant.html#Building_jWebUnit" />
65-
<item name="Building a release"
66-
href="/building-ant.html#Building_a_release" />
67-
</item>
6856
<item name="With Maven" href="/building-maven.html"
6957
collapse="true">
7058
<item name="Installing Maven"

src/site/xdoc/building-ant.xml

Lines changed: 0 additions & 45 deletions
This file was deleted.

src/site/xdoc/index.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<p>
2020
jWebUnit is a Java framework that facilitates creation of acceptance tests for web applications. It
2121
evolved from a project where we were using <a href="http://www.junit.org">JUnit</a> to create acceptance tests.
22-
Also, we have different testing engines: <a href="jwebunit-httpunit-plugin/index.html">HttpUnit</a> and <a href="jwebunit-htmlunit-plugin/index.html">HtmlUnit</a>.
22+
Also, we can have different testing engines. Currently, only <a href="jwebunit-htmlunit-plugin/index.html">HtmlUnit plugin</a> is ready.
2323
As the tests were being written, they were continuously refactored to remove duplication and other bad smells in the test
2424
code. jWebUnit is the result of these refactorings.
2525
</p>
@@ -31,8 +31,8 @@
3131
via links, form entry and submission, validation of table contents, and other
3232
typical business web application features. This code try to stay independent of the libraries behind
3333
the scenes. The simple navigation methods and ready-to-use assertions allow for
34-
more rapid test creation than using only JUnit and HttpUnit/HtmlUnit. And if you want to switch
35-
from HttpUnit to HtmlUnit, no need to rewrite your tests.
34+
more rapid test creation than using only JUnit and HtmlUnit. And if you want to switch
35+
from HtmlUnit to the other soon available plugins, no need to rewrite your tests.
3636
</p>
3737
<img src="images/jwebunit-architecture.png" alt="JWebUnit architecture"/>
3838
</section>

src/site/xdoc/installation.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,9 @@
5050
</subsection>
5151
<subsection name="Choose what plugin you want to use">
5252
<p>
53-
There are currently 2 available plugins:
53+
There are currently 1 available plugin:
5454
<ul>
55-
<li>HttpUnit: Was the first supported plugin. Javascript support is very basic. Will not be supported in jWebUnit 2.x</li>
56-
<li>HtmlUnit: A good choice if you want better Javascript support.</li>
55+
<li>HtmlUnit: A good choice if you want rapidity and good Javascript support.</li>
5756
</ul>
5857
</p>
5958
</subsection>

src/site/xdoc/quickstart.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ import net.sourceforge.jwebunit.TestingEngineRegistry;
5252
public class ExampleWebTestCase extends WebTestCase {
5353
public ExampleWebTestCase(String name) {
5454
super(name);
55-
setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_HTTPUNIT);
56-
// or setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_HTMLUNIT);
55+
setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_HTMLUNIT);
5756
}
5857
}
5958
</source>

0 commit comments

Comments
 (0)