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

Side by Side Diff: packages/unittest/lib/src/configuration.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library unittest.configuration; 5 library unittest.configuration;
6 6
7 import 'simple_configuration.dart'; 7 import 'simple_configuration.dart';
8 import 'test_case.dart'; 8 import 'test_case.dart';
9 9
10 /// Describes the interface used by the unit test system for communicating the 10 /// Describes the interface used by the unit test system for communicating the
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 void onDone(bool success) {} 60 void onDone(bool success) {}
61 61
62 /// Called with the result of all test cases. Browser tests commonly override 62 /// Called with the result of all test cases. Browser tests commonly override
63 /// this to reformat the output. 63 /// this to reformat the output.
64 /// 64 ///
65 /// When [uncaughtError] is not null, it contains an error that occured outsid e 65 /// When [uncaughtError] is not null, it contains an error that occured outsid e
66 /// of tests (e.g. setting up the test). 66 /// of tests (e.g. setting up the test).
67 void onSummary(int passed, int failed, int errors, List<TestCase> results, 67 void onSummary(int passed, int failed, int errors, List<TestCase> results,
68 String uncaughtError) {} 68 String uncaughtError) {}
69 } 69 }
OLDNEW
« no previous file with comments | « packages/unittest/lib/html_individual_config.dart ('k') | packages/unittest/lib/src/expected_function.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698