- Mar 28, 2016
-
-
Natalie Weizenbaum authored
See dart-lang/matcher@400e87928fdceeee883c95c8a81e96fdacfdc399
-
- Mar 24, 2016
-
-
Natalie Weizenbaum authored
-
- May 21, 2015
-
-
Natalie Weizenbaum authored
Some tests, especially those using HTML imports, aren't ready to be run when readyState is set to "complete".
-
- May 08, 2015
-
-
Kevin Moore authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//1135653004
-
- May 07, 2015
-
-
Kevin Moore authored
Fixes test issue https://github.com/dart-lang/test/issues/61 BUG= http://dartbug.com/23156 R=nweiz@google.com Review URL: https://codereview.chromium.org//1128383002
-
- Feb 19, 2015
-
-
Kevin Moore authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//939243002
-
- Feb 12, 2015
-
-
Kevin Moore authored
Cherry-picked 1e93b9be from master R=nweiz@google.com Review URL: https://codereview.chromium.org//897313006
-
- Feb 06, 2015
-
-
Natalie Weizenbaum authored
-
- Jan 28, 2015
-
-
Natalie Weizenbaum authored
This gets rid of all uses of part, adds documentation where it was missing, and fixes a number of style issues. It's a backwards-compatible change designed to make the package more clear and comprehensible in preparation for larger changes to come. R=kevmoo@google.com Review URL: https://codereview.chromium.org//869043002
-
- Jan 13, 2015
-
-
Kevin Moore authored
also removed unused fields and variables R=nweiz@google.com Review URL: https://codereview.chromium.org//845153003
-
- Dec 11, 2014
-
-
nweiz@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//791213002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@42272 260f80e4-7a28-3924-810f-c04153c831b5
-
- Dec 09, 2014
-
-
nweiz@google.com authored
This avoids a versioning issue where an exported dependency adds a feature and the exporting package's users' version constraints become invalidated. For example, suppose unittest 1.0.0 and matcher 1.0.0 exist. unittest has the constraint "matcher: '>=1.0.0 <2.0.0'" and exports matcher. Then matcher 1.1.0 is released with a new feature, and a user writes a new package, mypkg, which uses that feature. As per common practice, this package has the version constraint "unittest: '>=1.0.0 <2.0.0'" and no constraint on matcher. This constraint allows matcher 1.0.0, which doesn't support the new feature; this is a problem. Under the new scheme, unittest would have the constraint "matcher: '>=1.0.0 <1.1.0'". Then when matcher 1.1.0 is released, unittest 1.1.0 would be released as well with the constraint "marcher: '>=1.1.0 <1.2.0'". The tight lower bound ensures that the constraint "unittest: '>=1.1.0 <2.0.0'" properly selects only versions of matcher that have features available in the version the user is testing against. The tight upper bound ensures that new features in a new version of matcher won't become available in unittest without a version upgrade. R=jmesserly@google.com, rnystrom@google.com Review URL: https://codereview.chromium.org//775413002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@42223 260f80e4-7a28-3924-810f-c04153c831b5
-
- Dec 08, 2014
-
-
nivco@google.com authored
Instead of Throwing an error when setting the unittest config if it has already been set we'll just display a warning. https://codereview.chromium.org/772463003/ git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@42187 260f80e4-7a28-3924-810f-c04153c831b5
-
- Nov 18, 2014
-
-
wibling@google.com authored
BUG= R=kustermann@google.com, sgjesse@google.com Review URL: https://codereview.chromium.org//734343002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@41798 260f80e4-7a28-3924-810f-c04153c831b5
-
- Nov 14, 2014
-
-
wibling@google.com authored
I am creating e2e tests for dart on App Engine and want to avoid redeploying the app each time I need to run a specific set of tests. Instead I have enhanced the unittest library with a method which creates a new "global" test environment which can be used for this specific run of tests. Before I had to redeploy the app each time (takes ~2-4mins) to get a fresh test environment. BUG= R=kevmoo@google.com, kustermann@google.com Review URL: https://codereview.chromium.org//709903004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@41741 260f80e4-7a28-3924-810f-c04153c831b5
-
- Oct 07, 2014
-
-
srawlins@google.com authored
BUG= https://code.google.com/p/dart/issues/detail?id=13105 R=rnystrom@google.com Review URL: https://codereview.chromium.org//638433003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@40967 260f80e4-7a28-3924-810f-c04153c831b5
-
- Sep 18, 2014
-
-
kevmoo@google.com authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//524153002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@40475 260f80e4-7a28-3924-810f-c04153c831b5
-
- Aug 07, 2014
-
-
paulberry@google.com authored
Previously, if a unit test returned a future, then while the unit test framework was awaiting that future, asynchronous failures occurring during callback functions would not abort the test. In addition to fixing the bug, fix a flaw in the _defer() function which prevented async_exception_test from actually testing asynchronous exceptions. BUG= http://dartbug.com/20153 R=kevmoo@google.com Review URL: https://codereview.chromium.org//416133002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@39013 260f80e4-7a28-3924-810f-c04153c831b5
-
- Jul 23, 2014
-
-
kevmoo@google.com authored
Updated homepage url R=rnystrom@google.com Review URL: https://codereview.chromium.org//412483005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@38485 260f80e4-7a28-3924-810f-c04153c831b5
-
- Jun 09, 2014
-
-
kevmoo@google.com authored
R=sigmund@google.com Review URL: https://codereview.chromium.org//319983005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@37147 260f80e4-7a28-3924-810f-c04153c831b5
-
- Jun 02, 2014
-
-
nweiz@google.com authored
R=kevmoo@google.com, rnystrom@google.com Review URL: https://codereview.chromium.org//308763003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@36891 260f80e4-7a28-3924-810f-c04153c831b5
-
- May 12, 2014
-
-
kevmoo@google.com authored
BUG= https://code.google.com/p/dart/issues/detail?id=9780 R=sigmund@google.com Review URL: https://codereview.chromium.org//283573004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@36047 260f80e4-7a28-3924-810f-c04153c831b5
-
- Apr 02, 2014
-
-
kevmoo@google.com authored
R=sigmund@google.com Review URL: https://codereview.chromium.org//218403015 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@34627 260f80e4-7a28-3924-810f-c04153c831b5
-
- Mar 25, 2014
-
-
kevmoo@google.com authored
fixed changelog Moved to triple slash, fixed doc comments whitespace formatting tests: finals, annotating functions R=sigmund@google.com Review URL: https://codereview.chromium.org//208273009 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@34384 260f80e4-7a28-3924-810f-c04153c831b5
-
- Mar 24, 2014
-
-
kevmoo@google.com authored
R=sigmund@google.com Review URL: https://codereview.chromium.org//210413002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@34329 260f80e4-7a28-3924-810f-c04153c831b5
-
- Feb 28, 2014
-
-
kevmoo@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//177123014 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@33173 260f80e4-7a28-3924-810f-c04153c831b5
-
rnystrom@google.com authored
R=kevmoo@google.com, sigmund@google.com Review URL: https://codereview.chromium.org//184103002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@33164 260f80e4-7a28-3924-810f-c04153c831b5
-
- Feb 07, 2014
-
-
kevmoo@google.com authored
add top-level expectAsync and expectAsyncUntil methods which take care of counting arguments R=sigmund@google.com Review URL: https://codereview.chromium.org//137223007 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@32449 260f80e4-7a28-3924-810f-c04153c831b5
-
kevmoo@google.com authored
Review URL: https://codereview.chromium.org//138383005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@32430 260f80e4-7a28-3924-810f-c04153c831b5
-
kevmoo@google.com authored
Added a changelog to unittest Deprecated a number of methods made extraneous by zone change Fixed related issues in html and html tests BUG= https://code.google.com/p/dart/issues/detail?id=13277 BUG= https://code.google.com/p/dart/issues/detail?id=16541 R=sigmund@google.com Review URL: https://codereview.chromium.org//133313004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@32400 260f80e4-7a28-3924-810f-c04153c831b5
-
- Feb 04, 2014
-
-
kevmoo@google.com authored
R=blois@google.com Review URL: https://codereview.chromium.org//135013006 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@32288 260f80e4-7a28-3924-810f-c04153c831b5
-
kevmoo@google.com authored
added a change log Deprecate methods with behavior subsumed by runZoned removed rerunTests updated async/future_timeout_test to not assume Zone.ROOT during test run BUG= https://code.google.com/p/dart/issues/detail?id=13277 R=nweiz@google.com Review URL: https://codereview.chromium.org//130173010 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/unittest@32284 260f80e4-7a28-3924-810f-c04153c831b5
-