auto_test 0.1.0 copy "auto_test: ^0.1.0" to clipboard
auto_test: ^0.1.0 copied to clipboard

outdated

Support for discovering tests and test suites using reflection.

auto_test #

all_packages

Support for discovering tests and test suites using reflection.

This package follows the xUnit style where each class is a test suite, and each method with the name prefix test_ or has @autoTest is a single test.

Methods with names starting with test_ or have @autoTest are run using the test() function with the corresponding name. If the class defines methods setUp() or tearDown(), they are executed before / after each test correspondingly, even if the test fails.

Methods with names starting with solo_test_ or have @soloTest are run using the solo_test() function.

Methods with names starting with fail_ or have @failingTest are expected to fail.

Methods with names starting with solo_fail_ are run using the solo_test() function. and expected to fail.

Method returning Future class instances are asynchronous, so tearDown() is executed after the returned Future completes.

Methods with

Features and bugs #

Please file feature requests and bugs at the issue tracker.

0
likes
0
points
17
downloads

Publisher

unverified uploader

Weekly Downloads

Support for discovering tests and test suites using reflection.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

test

More

Packages that depend on auto_test