I am trying to reference Esri's Runtime SDK in my Flutter tests, but I am encountering the following error when running my test suite:
Invalid argument(s): Failed to load dynamic library 'example/macos/Pods/Runtimecore/Runtimecore.xcframework/macos-arm64_x86_64/Runtimecore.framework/Runtimecore'
test:
void main() { test('ArcGISMap instance should be created', () { final arcGISMap = ArcGISMap(); expect(arcGISMap, isNotNull); }); }
What is the recommended way to mock or test Esri-related functionality in Flutter?