|
Enhanced C#
Language of your choice: library documentation
|
A stripped-down NUnit lookalike which allows you to put simple unit tests in an assembly without having to add a reference to NUnit.Framework.dll.
More...
Classes | |
| class | Assert |
| The Assert class contains a collection of static methods that mirror the most common assertions used in NUnit. More... | |
| class | AssertionException |
| Thrown when an assertion fails during a call to a method of Assert. More... | |
| class | BenchmarkAttribute |
| Marks a benchmark test, which exists to test performance. Benchmark tests are often run multiple times to obtain an average running time. More... | |
| class | ExpectedExceptionAttribute |
| Marks a test that is expected to throw an exception of a particular type. The test fails if the expected exception is not thrown. More... | |
| class | IgnoreException |
| Thrown by Assert.Ignore(). More... | |
| class | InconclusiveException |
| Thrown by Assert.Inconclusive(). More... | |
| class | RunTests |
| Searches for test methods and runs them, printing the name of each test to the console followed by errors (if any) produced by the test. More... | |
| class | SetUpAttribute |
| Marks a method that is to be called prior to each test in a test fixture. More... | |
| class | SuccessException |
| Thrown by Assert.Success(). More... | |
| class | TearDownAttribute |
| Marks a method that is to be called after each test in a test fixture. More... | |
| class | TestAttribute |
| Identifies a method that contains a unit test, or that returns other tests or test fixtures. More... | |
| class | TestException |
| An exception thrown when a method of Assert fails. More... | |
| class | TestFixtureAttribute |
| Identifies a class that contains unit tests, or methods that return other tests or test fixtures. More... | |
A stripped-down NUnit lookalike which allows you to put simple unit tests in an assembly without having to add a reference to NUnit.Framework.dll.
1.8.7