Index: pkg/unittest/lib/src/group_context.dart |
diff --git a/pkg/unittest/lib/src/group_context.dart b/pkg/unittest/lib/src/group_context.dart |
index 668fb4749d1af00c082237acf83c095c4d53bce6..49c83a4681371d4782a8b03107553f131df52601 100644 |
--- a/pkg/unittest/lib/src/group_context.dart |
+++ b/pkg/unittest/lib/src/group_context.dart |
@@ -1,16 +1,14 @@ |
part of unittest; |
-/** |
- * Setup and teardown functions for a group and its parents, the latter |
- * for chaining. |
- */ |
+/// Setup and teardown functions for a group and its parents, the latter |
+/// for chaining. |
class _GroupContext { |
final _GroupContext parent; |
- /** Description text of the current test group. */ |
+ /// Description text of the current test group. |
final String _name; |
- /** Setup function called before each test in a group. */ |
+ /// Setup function called before each test in a group. |
Function _testSetup; |
get testSetup => _testSetup; |
@@ -33,7 +31,7 @@ class _GroupContext { |
} |
} |
- /** Teardown function called after each test in a group. */ |
+ /// Teardown function called after each test in a group. |
Function _testTeardown; |
get testTeardown => _testTeardown; |