@@ -5,9 +5,9 @@ import 'package:core/presentation/resources/image_paths.dart';
55import 'package:core/presentation/utils/app_toast.dart' ;
66import 'package:core/presentation/utils/responsive_utils.dart' ;
77import 'package:core/utils/application_manager.dart' ;
8+ import 'package:core/utils/file_utils.dart' ;
89import 'package:core/utils/platform_info.dart' ;
910import 'package:dartz/dartz.dart' hide State;
10- import 'package:core/utils/file_utils.dart' ;
1111import 'package:flutter/widgets.dart' hide State;
1212import 'package:flutter_test/flutter_test.dart' ;
1313import 'package:get/get.dart' ;
@@ -35,7 +35,6 @@ import 'package:tmail_ui_user/features/identity_creator/presentation/model/ident
3535import 'package:tmail_ui_user/features/login/data/network/interceptors/authorization_interceptors.dart' ;
3636import 'package:tmail_ui_user/features/login/domain/usecases/delete_authority_oidc_interactor.dart' ;
3737import 'package:tmail_ui_user/features/login/domain/usecases/delete_credential_interactor.dart' ;
38- import 'package:tmail_ui_user/features/login/domain/usecases/get_company_server_login_info_interactor.dart' ;
3938import 'package:tmail_ui_user/features/mailbox_creator/domain/state/verify_name_view_state.dart' ;
4039import 'package:tmail_ui_user/features/mailbox_creator/domain/usecases/verify_name_interactor.dart' ;
4140import 'package:tmail_ui_user/features/manage_account/data/local/language_cache_manager.dart' ;
@@ -66,7 +65,6 @@ import 'identity_creator_controller_test.mocks.dart';
6665 MockSpec <DeleteCredentialInteractor >(),
6766 MockSpec <LogoutOidcInteractor >(),
6867 MockSpec <DeleteAuthorityOidcInteractor >(),
69- MockSpec <GetCompanyServerLoginInfoInteractor >(),
7068 MockSpec <AppToast >(),
7169 MockSpec <ImagePaths >(),
7270 MockSpec <ResponsiveUtils >(),
@@ -113,7 +111,6 @@ void main() {
113111 late MockDeleteCredentialInteractor mockDeleteCredentialInteractor;
114112 late MockLogoutOidcInteractor mockLogoutOidcInteractor;
115113 late MockDeleteAuthorityOidcInteractor mockDeleteAuthorityOidcInteractor;
116- late MockGetCompanyServerLoginInfoInteractor mockGetCompanyServerLoginInfoInteractor;
117114 late MockAppToast mockAppToast;
118115 late MockImagePaths mockImagePaths;
119116 late MockResponsiveUtils mockResponsiveUtils;
@@ -131,7 +128,6 @@ void main() {
131128 mockDeleteCredentialInteractor = MockDeleteCredentialInteractor ();
132129 mockLogoutOidcInteractor = MockLogoutOidcInteractor ();
133130 mockDeleteAuthorityOidcInteractor = MockDeleteAuthorityOidcInteractor ();
134- mockGetCompanyServerLoginInfoInteractor = MockGetCompanyServerLoginInfoInteractor ();
135131 mockAppToast = MockAppToast ();
136132 mockImagePaths = MockImagePaths ();
137133 mockResponsiveUtils = MockResponsiveUtils ();
@@ -151,7 +147,6 @@ void main() {
151147 Get .put <DeleteCredentialInteractor >(mockDeleteCredentialInteractor);
152148 Get .put <LogoutOidcInteractor >(mockLogoutOidcInteractor);
153149 Get .put <DeleteAuthorityOidcInteractor >(mockDeleteAuthorityOidcInteractor);
154- Get .put <GetCompanyServerLoginInfoInteractor >(mockGetCompanyServerLoginInfoInteractor);
155150 Get .put <AppToast >(mockAppToast);
156151 Get .put <ImagePaths >(mockImagePaths);
157152 Get .put <ResponsiveUtils >(mockResponsiveUtils);
0 commit comments