Chromium Code Reviews| Index: corelib/src/expect.dart |
| =================================================================== |
| --- corelib/src/expect.dart (revision 8345) |
| +++ corelib/src/expect.dart (working copy) |
| @@ -2,6 +2,13 @@ |
| // 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. |
| +/** |
| + * Expect is used for tests that do not want to make use of the |
| + * Dart unit test library - for example, the core language tests. |
| + * Third parties are discouraged from using this, and should use |
| + * the expect() function in the unit test library instead for |
| + * test assertions. |
| + */ |
| class Expect { |
|
wittek
2012/06/14 10:30:35
Wondering:
Why is Expect a class, when all methods
|
| /** |