| Index: pkg/unittest/lib/src/config.dart
|
| diff --git a/pkg/unittest/lib/src/config.dart b/pkg/unittest/lib/src/config.dart
|
| index 1711b866ea8cc60dcb2ad13d81995dadc6112123..cbedfb3d7cba3430b87fbd63de62794b089c60e0 100644
|
| --- a/pkg/unittest/lib/src/config.dart
|
| +++ b/pkg/unittest/lib/src/config.dart
|
| @@ -52,8 +52,6 @@ class Configuration {
|
| * a test suite.
|
| */
|
| void onTestStart(TestCase testCase) {
|
| - assert(testCase != null);
|
| - assert(_currentTestCase == null);
|
| _currentTestCase = testCase;
|
| }
|
|
|
| @@ -62,8 +60,6 @@ class Configuration {
|
| * a test suite.
|
| */
|
| void onTestResult(TestCase testCase) {
|
| - assert(testCase != null);
|
| - assert(_currentTestCase == testCase);
|
| _currentTestCase = null;
|
| }
|
|
|
|
|