This repository was archived by the owner on Jan 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.1.8
2+
3+ - Update ` FailingTest ` to add named parameters ` issue ` and ` reason ` .
4+
15## 0.1.7
26
37- Update documentation comments.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const _AssertFailingTest assertFailingTest = const _AssertFailingTest();
1818/**
1919 * A marker annotation used to annotate test methods which are expected to fail.
2020 */
21- const FailingTest failingTest = const FailingTest (null );
21+ const FailingTest failingTest = const FailingTest ();
2222
2323/**
2424 * A marker annotation used to instruct dart2js to keep reflection information
@@ -268,9 +268,12 @@ typedef dynamic _TestFunction();
268268 */
269269class FailingTest {
270270 /**
271- * Initialize this annotation with the given issue URI.
271+ * Initialize this annotation with the given arguments.
272+ *
273+ * [issue] is a full URI describing the failure and used for tracking.
274+ * [reason] is a free form textual description.
272275 */
273- const FailingTest (String issueUri );
276+ const FailingTest ({ String issue, String reason} );
274277}
275278
276279/**
Original file line number Diff line number Diff line change 11name : test_reflective_loader
2- version : 0.1.7
2+ version : 0.1.8
33
44description : Support for discovering tests and test suites using reflection.
55author :
Dart Team <[email protected] >
You can’t perform that action at this time.
0 commit comments