@@ -195,19 +195,19 @@ void main() {
195
195
await project.ensureReadyForPlatformSpecificTooling ();
196
196
expectExists (project.macos.managedDirectory.childFile ('GeneratedPluginRegistrant.swift' ));
197
197
}, overrides: < Type , Generator > {
198
- FileSystem : () => MemoryFileSystem (),
199
- FeatureFlags : () => TestFeatureFlags (isMacOSEnabled: true ),
200
- FlutterProjectFactory : () => FlutterProjectFactory (),
198
+ FileSystem : () => MemoryFileSystem (),
199
+ FeatureFlags : () => TestFeatureFlags (isMacOSEnabled: true ),
200
+ FlutterProjectFactory : () => FlutterProjectFactory (),
201
201
});
202
202
testUsingContext ('generates Xcode configuration for macOS' , () async {
203
203
final FlutterProject project = await someProject ();
204
204
project.macos.managedDirectory.createSync (recursive: true );
205
205
await project.ensureReadyForPlatformSpecificTooling ();
206
206
expectExists (project.macos.generatedXcodePropertiesFile);
207
207
}, overrides: < Type , Generator > {
208
- FileSystem : () => MemoryFileSystem (),
209
- FeatureFlags : () => TestFeatureFlags (isMacOSEnabled: true ),
210
- FlutterProjectFactory : () => FlutterProjectFactory (),
208
+ FileSystem : () => MemoryFileSystem (),
209
+ FeatureFlags : () => TestFeatureFlags (isMacOSEnabled: true ),
210
+ FlutterProjectFactory : () => FlutterProjectFactory (),
211
211
});
212
212
testUsingContext ('injects plugins for Linux' , () async {
213
213
final FlutterProject project = await someProject ();
@@ -216,9 +216,9 @@ void main() {
216
216
expectExists (project.linux.managedDirectory.childFile ('generated_plugin_registrant.h' ));
217
217
expectExists (project.linux.managedDirectory.childFile ('generated_plugin_registrant.cc' ));
218
218
}, overrides: < Type , Generator > {
219
- FileSystem : () => MemoryFileSystem (),
220
- FeatureFlags : () => TestFeatureFlags (isLinuxEnabled: true ),
221
- FlutterProjectFactory : () => FlutterProjectFactory (),
219
+ FileSystem : () => MemoryFileSystem (),
220
+ FeatureFlags : () => TestFeatureFlags (isLinuxEnabled: true ),
221
+ FlutterProjectFactory : () => FlutterProjectFactory (),
222
222
});
223
223
testUsingContext ('injects plugins for Windows' , () async {
224
224
final FlutterProject project = await someProject ();
@@ -227,9 +227,9 @@ void main() {
227
227
expectExists (project.windows.managedDirectory.childFile ('generated_plugin_registrant.h' ));
228
228
expectExists (project.windows.managedDirectory.childFile ('generated_plugin_registrant.cc' ));
229
229
}, overrides: < Type , Generator > {
230
- FileSystem : () => MemoryFileSystem (),
231
- FeatureFlags : () => TestFeatureFlags (isWindowsEnabled: true ),
232
- FlutterProjectFactory : () => FlutterProjectFactory (),
230
+ FileSystem : () => MemoryFileSystem (),
231
+ FeatureFlags : () => TestFeatureFlags (isWindowsEnabled: true ),
232
+ FlutterProjectFactory : () => FlutterProjectFactory (),
233
233
});
234
234
testInMemory ('creates Android library in module' , () async {
235
235
final FlutterProject project = await aModuleProject ();
0 commit comments