From f7fae92fcaa857fa1d0ee18977d519b95da20052 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Mon, 12 Jan 2026 16:17:42 +0900 Subject: [PATCH] =?UTF-8?q?test:=20=EC=9C=84=EC=A0=AF=20=ED=85=8C=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/widget_test.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/widget_test.dart b/test/widget_test.dart index 662c8cd..7686385 100644 --- a/test/widget_test.dart +++ b/test/widget_test.dart @@ -6,8 +6,9 @@ void main() { // SharedPreferences 모킹 setUpAll(() { TestWidgetsFlutterBinding.ensureInitialized(); - const MethodChannel('plugins.flutter.io/shared_preferences') - .setMockMethodCallHandler((call) async { + const MethodChannel( + 'plugins.flutter.io/shared_preferences', + ).setMockMethodCallHandler((call) async { if (call.method == 'getAll') return {}; return null; });