Index: pkg/expect/lib/expect.dart |
diff --git a/sdk/lib/core/expect.dart b/pkg/expect/lib/expect.dart |
similarity index 98% |
copy from sdk/lib/core/expect.dart |
copy to pkg/expect/lib/expect.dart |
index 68b765f0f312a0d06e643866af637266c0d2fa85..faa9dd15a32bcdeae3dfd38c5607019d1c842289 100644 |
--- a/sdk/lib/core/expect.dart |
+++ b/pkg/expect/lib/expect.dart |
@@ -2,7 +2,11 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
-part of dart.core; |
+/** |
+ * This library contains an Expect class with static methods that can be used |
+ * for simple unit-tests. |
+ */ |
+library expect; |
/** |
* Expect is used for tests that do not want to make use of the |