unittest 0.10.0
unittest: ^0.10.0 copied to clipboard
A library for writing dart unit tests.
Changelog - unittest #
##0.10.0-dev
- Each test is run in a separate
Zone. This ensures that any exceptions that occur is async operations are reported back to the source test case. - DEPRECATED
guardAsync,protectAsync0,protectAsync1, andprotectAsync2- Running each test in a
Zoneaddresses the need for these methods.
- Running each test in a
- NEW!
expectAsyncreplaces the now deprecatedexpectAsync0,expectAsync1andexpectAsync2 - NEW!
expectAsyncUntilreplaces the now deprecatedexpectAsyncUntil0,expectAsyncUntil1andexpectAsyncUntil2 TestCase:- Removed properties:
setUp,tearDown,testFunction enabledis now get-only- Removed methods:
pass,fail,error
- Removed properties:
interactive_html_config.darthas been removed.runTests,tearDown,setUp,test,group,solo_test, andsolo_groupnow throw aStateErrorif called while tests are running.rerunTestshas been removed.
##0.9.3 - 2014-01-13