Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(616)

Unified Diff: pkg/unittest/unittest.dart

Issue 10836241: Move unittest from lib to pkg. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/unittest/interactive_html_config.dart ('k') | samples/markdown/test/markdown_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/unittest.dart
===================================================================
--- pkg/unittest/unittest.dart (revision 10655)
+++ pkg/unittest/unittest.dart (working copy)
@@ -6,7 +6,7 @@
* A library for writing dart unit tests.
*
* To import this library, specify the relative path to
- * lib/unittest/unittest.dart.
+ * pkg/unittest/unittest.dart.
*
* ##Concepts##
*
@@ -24,7 +24,7 @@
*
* A trivial test:
*
- * #import('path-to-dart/lib/unittest/unitest.dart');
+ * #import('path-to-dart/pkg/unittest/unitest.dart');
* main() {
* test('this is a test', () {
* int x = 2 + 3;
@@ -34,7 +34,7 @@
*
* Multiple tests:
*
- * #import('path-to-dart/lib/unittest/unitest.dart');
+ * #import('path-to-dart/pkg/unittest/unitest.dart');
* main() {
* test('this is a test', () {
* int x = 2 + 3;
@@ -48,7 +48,7 @@
*
* Multiple tests, grouped by category:
*
- * #import('path-to-dart/lib/unittest/unitest.dart');
+ * #import('path-to-dart/pkg/unittest/unitest.dart');
* main() {
* group('group A', () {
* test('test A.1', () {
@@ -74,7 +74,7 @@
* that callback is run. A count argument can be provided to specify the number
* of times the callback should be called (the default is 1).
*
- * #import('path-to-dart/lib/unittest/unitest.dart');
+ * #import('path-to-dart/pkg/unittest/unitest.dart');
* #import('dart:dom_deprecated');
* main() {
* test('calllback is executed once', () {
@@ -115,7 +115,7 @@
* arguments or that take named parameters. (this is not implemented yet,
* but will be coming here soon).
*
- * #import('path-to-dart/lib/unittest/unitest.dart');
+ * #import('path-to-dart/pkg/unittest/unitest.dart');
* #import('dart:dom_deprecated');
* main() {
* test('calllback is executed', () {
« no previous file with comments | « pkg/unittest/interactive_html_config.dart ('k') | samples/markdown/test/markdown_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698