diff --git a/packages/material_ui/temporarily_disabled_tests/checkbox_test.dart b/packages/material_ui/test/checkbox_test.dart similarity index 99% rename from packages/material_ui/temporarily_disabled_tests/checkbox_test.dart rename to packages/material_ui/test/checkbox_test.dart index 5d10e7094db2..3e19060c1887 100644 --- a/packages/material_ui/temporarily_disabled_tests/checkbox_test.dart +++ b/packages/material_ui/test/checkbox_test.dart @@ -2,20 +2,17 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -@Skip( - 'This file is skipped due to a cross-import that needs to be fixed. Tracked in https://github.com/flutter/flutter/issues/177028.', -) import 'dart:ui'; import 'package:cupertino_ui/cupertino_ui.dart'; import 'package:flutter/foundation.dart'; -import 'package:material_ui/material_ui.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart'; import 'package:flutter/src/gestures/constants.dart'; import 'package:flutter_test/flutter_test.dart'; +import 'package:material_ui/material_ui.dart'; -import '../widgets/semantics_tester.dart'; +import 'semantics_tester.dart'; void main() { final theme = ThemeData(); diff --git a/packages/material_ui/temporarily_disabled_tests/radio_test.dart b/packages/material_ui/test/radio_test.dart similarity index 99% rename from packages/material_ui/temporarily_disabled_tests/radio_test.dart rename to packages/material_ui/test/radio_test.dart index a9523a5e524c..e04305792972 100644 --- a/packages/material_ui/temporarily_disabled_tests/radio_test.dart +++ b/packages/material_ui/test/radio_test.dart @@ -2,9 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -@Skip( - 'This file is skipped due to a cross-import that needs to be fixed. Tracked in https://github.com/flutter/flutter/issues/177028.', -) // This file is run as part of a reduced test set in CI on Mac and Windows // machines. @Tags(['reduced-test-set']) @@ -14,13 +11,13 @@ import 'dart:ui'; import 'package:cupertino_ui/cupertino_ui.dart'; import 'package:flutter/foundation.dart'; -import 'package:material_ui/material_ui.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart'; import 'package:flutter/src/gestures/constants.dart'; import 'package:flutter_test/flutter_test.dart'; +import 'package:material_ui/material_ui.dart'; -import '../widgets/semantics_tester.dart'; +import 'semantics_tester.dart'; void main() { final theme = ThemeData(); diff --git a/packages/material_ui/temporarily_disabled_tests/range_slider_test.dart b/packages/material_ui/test/range_slider_test.dart similarity index 99% rename from packages/material_ui/temporarily_disabled_tests/range_slider_test.dart rename to packages/material_ui/test/range_slider_test.dart index ee787eb7f789..bce8581e9088 100644 --- a/packages/material_ui/temporarily_disabled_tests/range_slider_test.dart +++ b/packages/material_ui/test/range_slider_test.dart @@ -2,18 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -@Skip( - 'This file is skipped due to a cross-import that needs to be fixed. Tracked in https://github.com/flutter/flutter/issues/177028.', -) import 'package:flutter/foundation.dart'; import 'package:flutter/gestures.dart'; -import 'package:material_ui/material_ui.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart'; import 'package:flutter/src/physics/utils.dart' show nearEqual; import 'package:flutter_test/flutter_test.dart'; +import 'package:material_ui/material_ui.dart'; -import '../widgets/semantics_tester.dart'; +import 'semantics_tester.dart'; void main() { // Regression test for https://github.com/flutter/flutter/issues/105833 diff --git a/packages/material_ui/temporarily_disabled_tests/toggle_buttons_test.dart b/packages/material_ui/test/toggle_buttons_test.dart similarity index 99% rename from packages/material_ui/temporarily_disabled_tests/toggle_buttons_test.dart rename to packages/material_ui/test/toggle_buttons_test.dart index 7a0bb324c9e4..f2230a2e05b2 100644 --- a/packages/material_ui/temporarily_disabled_tests/toggle_buttons_test.dart +++ b/packages/material_ui/test/toggle_buttons_test.dart @@ -2,9 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -@Skip( - 'This file is skipped due to a cross-import that needs to be fixed. Tracked in https://github.com/flutter/flutter/issues/177028.', -) // This file is run as part of a reduced test set in CI on Mac and Windows // machines. @Tags(['reduced-test-set']) @@ -12,11 +9,11 @@ library; import 'package:flutter/foundation.dart'; import 'package:flutter/gestures.dart'; -import 'package:material_ui/material_ui.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter_test/flutter_test.dart'; +import 'package:material_ui/material_ui.dart'; -import '../widgets/semantics_tester.dart'; +import 'semantics_tester.dart'; const double _defaultBorderWidth = 1.0;