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

Unified Diff: observatory_pub_packages/unittest/src/test_environment.dart

Issue 816693004: Add observatory_pub_packages snapshot to third_party (Closed) Base URL: http://dart.googlecode.com/svn/third_party/
Patch Set: Created 6 years 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
Index: observatory_pub_packages/unittest/src/test_environment.dart
===================================================================
--- observatory_pub_packages/unittest/src/test_environment.dart (revision 0)
+++ observatory_pub_packages/unittest/src/test_environment.dart (working copy)
@@ -0,0 +1,54 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// 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 unittest;
+
+/// Class for encapsulating test environment state.
+///
+/// This is used by the [withTestEnvironment] method to support multiple
+/// invocations of the unittest library within the same application
+/// instance.
+class _TestEnvironment {
+ Configuration config;
+
+ // We use a 'dummy' context for the top level to eliminate null
+ // checks when querying the context. This allows us to easily
+ // support top-level [setUp]/[tearDown] functions as well.
+ final rootContext = new _GroupContext();
+ _GroupContext currentContext;
+
+ /// The [currentTestCaseIndex] represents the index of the currently running
+ /// test case.
+ ///
+ /// If this is -1 it implies the test system is not running.
+ /// It will be set to [number of test cases] as a short-lived state flagging
+ /// that the last test has completed.
+ int currentTestCaseIndex = -1;
+
+ /// The [initialized] variable specifies whether the framework
+ /// has been initialized.
+ bool initialized = false;
+
+ /// The time since we last gave asynchronous code a chance to be scheduled.
+ int lastBreath = new DateTime.now().millisecondsSinceEpoch;
+
+ /// The set of tests to run can be restricted by using [solo_test] and
+ /// [solo_group].
+ ///
+ /// As groups can be nested we use a counter to keep track of the nesting
+ /// level of soloing, and a flag to tell if we have seen any solo tests.
+ int soloNestingLevel = 0;
+ bool soloTestSeen = false;
+
+ /// The list of test cases to run.
+ final List<TestCase> testCases = new List<TestCase>();
+
+ /// The [uncaughtErrorMessage] holds the error messages that are printed
+ /// in the test summary.
+ String uncaughtErrorMessage;
+
+ _TestEnvironment() {
+ currentContext = rootContext;
+ }
+}
« no previous file with comments | « observatory_pub_packages/unittest/src/test_case.dart ('k') | observatory_pub_packages/unittest/src/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698