example

Members

Classes

Test
class Test

This example demonstrates the reporting of test failures.

TestFixture
class TestFixture

This example demonstrates the order in which the fixture functions run. The functions 'setUp' and 'tearDown' run before and after each test. The functions 'setUpAll' and 'tearDownAll' run once before and after all tests in the class.

TestReuse
class TestReuse

This example demonstrates how to reuse tests and a test fixture.

TestingAsynchronousCode
class TestingAsynchronousCode

This example demonstrates how to test asynchronous code.

TestingThisAndThat
class TestingThisAndThat

This example demonstrates various things to know about the test framework.

Meta