Index: pkg/unittest/lib/unittest.dart |
diff --git a/pkg/unittest/lib/unittest.dart b/pkg/unittest/lib/unittest.dart |
index f9643fb68485236fa8539ba694ed92a639133811..c13aa9dc5be0bc30557986d3740a3b7d4bc29557 100644 |
--- a/pkg/unittest/lib/unittest.dart |
+++ b/pkg/unittest/lib/unittest.dart |
@@ -305,15 +305,6 @@ const FAIL = 'fail'; |
const ERROR = 'error'; |
/** |
- * A map that can be used to communicate state between a test driver |
- * or main() function and the tests, particularly when these two |
- * are otherwise independent. For example, a test driver that starts |
- * an HTTP server and then runs tests that access that server could use |
- * this as a way of communicating the server port to the tests. |
- */ |
-Map testState = {}; |
- |
-/** |
* Creates a new test case with the given description and body. The |
* description will include the descriptions of any surrounding group() |
* calls. |