| Index: lib/src/test_case.dart
|
| diff --git a/lib/src/test_case.dart b/lib/src/test_case.dart
|
| index 37596ff599c434d206980fc2d7b0d661ace52e6b..5a99d1eabc7254f0f9bd51d34d9951af33546ed5 100644
|
| --- a/lib/src/test_case.dart
|
| +++ b/lib/src/test_case.dart
|
| @@ -4,52 +4,20 @@
|
|
|
| library unittest.test_case;
|
|
|
| -import '../unittest.dart';
|
| -
|
| -/// An individual unit test.
|
| +/// This is a stub class used to preserve compatibility with unittest 0.11.*.
|
| +///
|
| +/// It will be removed before the next version is released.
|
| +@deprecated
|
| abstract class TestCase {
|
| - /// A unique numeric identifier for this test case.
|
| int get id;
|
| -
|
| - /// A description of what the test is specifying.
|
| String get description;
|
| -
|
| - /// The error or failure message for the tests.
|
| - ///
|
| - /// Initially an empty string.
|
| String get message;
|
| -
|
| - /// The result of the test case.
|
| - ///
|
| - /// If the test case has is completed, this will be one of [PASS], [FAIL], or
|
| - /// [ERROR]. Otherwise, it will be `null`.
|
| String get result;
|
| -
|
| - /// Returns whether this test case passed.
|
| bool get passed;
|
| -
|
| - /// The stack trace for the error that caused this test case to fail, or
|
| - /// `null` if it succeeded.
|
| StackTrace get stackTrace;
|
| -
|
| - /// The name of the group within which this test is running.
|
| String get currentGroup;
|
| -
|
| - /// The time the test case started running.
|
| - ///
|
| - /// `null` if the test hasn't yet begun running.
|
| DateTime get startTime;
|
| -
|
| - /// The amount of time the test case took.
|
| - ///
|
| - /// `null` if the test hasn't finished running.
|
| Duration get runningTime;
|
| -
|
| - /// Whether this test is enabled.
|
| - ///
|
| - /// Disabled tests won't be run.
|
| bool get enabled;
|
| -
|
| - /// Whether this test case has finished running.
|
| - bool get isComplete => !enabled || result != null;
|
| + final isComplete = false;
|
| }
|
|
|