Releases: LisiLisenok/asyncTest
bench
take off
- test rules which provide initialization / disposing
- test runners which provide a control over the test execution
- type-parameterized testing
- another logic of concurrent test execution mode
- using factory to instantiate test container
- timeout and retry annotations
- new matchers
Ceylon 1.3.0
- compiled with Ceylon 1.3.0
- documentation edited
---> Ceylon 1.2.2
0.5.0 compiled with Ceylon 1.2.2
go-test-go
Rather different API comparing to 0.1.0-0.4.0
Tests are grouped by container - class
or package
(for top-level functions).
Groups are executed sequentially while tests within specific group may be executed both sequentially or concurrently. Group execution order may be sorted before testing.
If test functions are grouped using class declaration, only one instance of the class is used durinng all test runcycle.
In order to perform initialization class must satisfy TestSuite interface. after
and before
annotations don't work with asyncTest.
All assertXXX
methods are deprecated - use matchers
instead.
Match
Matchers introduced: organizing complex test conditions into a one flexible expression.
0.3.0
Added:
- concurrent or sequential test execution
- parameterized testing with any annotation satisfied
ArgumentListProvider
- conditional test execution
- test success reporting
- reporting using
Chart
s
v0.2.0
Common initialization for a set of test functions is added