Skip to content

Commit 23c22fc

Browse files
committed
Merge pull request #28 from HtmlUnit/feature/update-readme
Update readme
2 parents a379b1a + f8bfb80 commit 23c22fc

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
NHtmlUnit
22
=========
33

4+
[![Build Status](https://travis-ci.org/HtmlUnit/NHtmlUnit.svg?branch=master)](https://travis-ci.org/HtmlUnit/NHtmlUnit)
5+
46
NHtmlUnit is a .NET wrapper of [HtmlUnit](http://htmlunit.sourceforge.net/);
57
a "GUI-less browser for Java programs".
68

@@ -11,7 +13,7 @@ We really like the HtmlUnit project, which enables headless web testing without
1113
to have a complete browser running. By using [IKVM](http://www.ikvm.net/) it is possible
1214
to convert the HtmlUnit Java library for use on Microsoft's .NET platform.
1315

14-
However, it doesn't feel very natural to use a java library in a .NET language,
16+
However, it doesn't feel very natural to use a Java library in a .NET language,
1517
and therefore we created an HtmlUnit wrapper written in C#, so you can write tests for
1618
your web pages in clean C# code (or any code running on the .NET platform).
1719

@@ -29,8 +31,8 @@ If you want to build your own version of NHtmlUnit, you can use MSBuild or Visua
2931

3032
After building you can find `NHtmlUnit.dll` plus its dependencies here:
3133

32-
* app\NHtmlUnit\bin\Debug
33-
* app\NHtmlUnit\bin\Release
34+
* `app\NHtmlUnit\bin\Debug`
35+
* `app\NHtmlUnit\bin\Release`
3436

3537
Usage
3638
-----
@@ -42,7 +44,7 @@ almost completely reflects the original API.
4244
The difference is that Java iterators, lists and collections are exposed as their
4345
.NET-friendly counterparts (`IEnumerable`, `IList` and `ICollection`). In addition,
4446
properties are "real" .NET properties, so `obj.getSomething()` and `obj.setSomething()` is
45-
exposed as `obj.Something`.
47+
exposed as `obj.Something` with a public getter and setter.
4648

4749
NHtmlUnitGenerator
4850
------------------
@@ -80,4 +82,4 @@ would be nice, although we're unsure exactly how much this would do for the fina
8082
Authours
8183
--------
8284

83-
NHtmlUnit was written by Asbjørn Ulsberg and Karsten Strand at OKB AS.
85+
NHtmlUnit was written by @asbjornu and @beewarloc.

0 commit comments

Comments
 (0)