Skip to content

Commit

Permalink
Merge branch 'master' of github.com:tenpn/untest
Browse files Browse the repository at this point in the history
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
  • Loading branch information
Andrew Fray committed Jul 24, 2013
2 parents 17b171e + 1dd71e4 commit dc32132
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

Because there is always one less unit-testing framework than there needs to be.

###Installation

Download the latest release from here:

https://github.com/tenpn/untest/releases

...And extract into your project.

###Usage

A test suite looks like this:

```C#
Expand All @@ -23,13 +33,13 @@ class MyTestSuite {
[Test]
void GetResult_WithValidResult_GivesResult() {
m_instance.SetResult(3);
Assert.Equal(m_instance.Result, 3); // there's no assert class yet!
Assert.IsTrue(m_instance.Result == 3);
}

}
```

###To Run
####To Run

From the command line:

Expand Down

0 comments on commit dc32132

Please sign in to comment.