├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Demos ├── OsxIpcDemo │ ├── IpcDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── IpcDemo.xcworkspace │ │ └── contents.xcworkspacedata │ ├── IpcDemo │ │ ├── HelloIpcMethod.swift │ │ ├── HelloIpcMethodHandler.swift │ │ ├── Master.swift │ │ ├── Slave.swift │ │ ├── Support │ │ │ ├── PollingSynchronousIpcClient.swift │ │ │ └── PollingSynchronousIpcClientFactory.swift │ │ └── main.swift │ ├── Podfile │ └── Podfile.lock └── UiTestsDemo │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift │ ├── BlackBoxTests │ ├── BlackBoxTests.swift │ ├── DI │ │ └── BlackBoxTestCaseDependencies.swift │ ├── Info.plist │ └── TestCase │ │ ├── LaunchableApplicationProvider.swift │ │ └── TestCase.swift │ ├── Frameworks │ └── UiTestsSharedCode │ │ ├── Sources │ │ ├── DI │ │ │ └── UiTestCaseDependencies.swift │ │ ├── PageObjects │ │ │ ├── PageObjects.swift │ │ │ └── PageObjects │ │ │ │ ├── FirstScreen.swift │ │ │ │ └── SecondScreen.swift │ │ └── TestCase │ │ │ └── BaseTestCase.swift │ │ └── UiTestsSharedCode.podspec │ ├── GrayBoxTests │ ├── DI │ │ └── GrayBoxTestCaseDependencies.swift │ ├── GrayBoxTests.swift │ ├── Info.plist │ └── TestCase │ │ └── TestCase.swift │ ├── Podfile │ ├── Podfile.lock │ ├── README.md │ ├── UiTestsDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── BlackBoxTests.xcscheme │ │ ├── Demo.xcscheme │ │ └── GrayBoxTests.xcscheme │ ├── UiTestsDemo.xcworkspace │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── cocoapods ├── Docs ├── EarlGreyLicense │ └── LICENSE ├── Frameworks.md ├── Ideas.md ├── Images │ └── Dependencies.png ├── PrivateApi.md ├── PrivateApi │ ├── ClassDump.md │ ├── Disassembling.md │ ├── DumpPy.md │ ├── Examples.md │ ├── ExploringSimulator.md │ ├── FixingInjectionOfEventsExample.md │ └── Runtime.md ├── SettingThingsUp.md └── TestingPyramid.md ├── Frameworks ├── AnyCodable │ ├── README.md │ └── Sources │ │ └── FlightSchoolAnyCodable │ │ ├── AnyCodable.swift │ │ ├── AnyDecodable.swift │ │ ├── AnyEncodable.swift │ │ └── LICENSE.md ├── Black │ └── Sources │ │ ├── Application │ │ └── Launching │ │ │ ├── FastLaunching │ │ │ ├── ApplicationInstallationVersionChecker.swift │ │ │ └── ApplicationInstallationVersionCheckerImpl.swift │ │ │ ├── LaunchableApplication │ │ │ ├── LaunchableApplication.swift │ │ │ └── Sbtui │ │ │ │ ├── Mocking │ │ │ │ ├── Recording │ │ │ │ │ └── SbtuiNetworkRecordsProvider.swift │ │ │ │ └── Stubbing │ │ │ │ │ ├── Builder │ │ │ │ │ ├── SbtuiStubRequestBuilder.swift │ │ │ │ │ └── SbtuiStubResponseBuilder.swift │ │ │ │ │ ├── Model │ │ │ │ │ ├── SbtuiStub.swift │ │ │ │ │ ├── SbtuiStubRequest.swift │ │ │ │ │ └── SbtuiStubResponse.swift │ │ │ │ │ └── SbtuiStubApplier │ │ │ │ │ ├── SbtuiStubApplier.swift │ │ │ │ │ └── SbtuiStubApplierImpl.swift │ │ │ │ └── SbtuiLaunchableApplication.swift │ │ │ └── LaunchedApplication │ │ │ ├── LaunchedApplication.swift │ │ │ └── LaunchedApplicationImpl.swift │ │ ├── Di │ │ ├── Parts │ │ │ ├── BaseBlackBoxDependencyCollectionRegisterer.swift │ │ │ ├── BlackBoxApplicationDependentDependencyCollectionRegisterer.swift │ │ │ └── BlackBoxApplicationIndependentDependencyCollectionRegisterer.swift │ │ └── TopLevel │ │ │ ├── MultipleMainAppsBlackBoxDependencies.swift │ │ │ ├── SingleAppBlackBoxDependencies.swift │ │ │ └── SingleMainAppBlackBoxDependencies.swift │ │ ├── Extensions │ │ ├── CGRect+Hashable.swift │ │ ├── ObjcVisibilityWorkaround.h │ │ └── XCUIElement+EnhancedValue.swift │ │ ├── Locator │ │ └── ElementFinder │ │ │ └── Impls │ │ │ ├── Failing │ │ │ ├── FailingElementFinder.swift │ │ │ └── FailingElementQuery.swift │ │ │ └── Xcui │ │ │ ├── XcuiElementFinder.swift │ │ │ └── XcuiElementQuery.swift │ │ ├── PrivateHeaders │ │ ├── PrivateHeaders.md │ │ └── SwiftWrapper │ │ │ └── XcuiElementSnapshot.swift │ │ ├── Utils │ │ ├── ActionDependencies │ │ │ ├── EventGenerator │ │ │ │ ├── XcuiEventGenerator.swift │ │ │ │ └── XcuiEventGeneratorObjC │ │ │ │ │ ├── EventGeneratorObjC.h │ │ │ │ │ ├── EventGeneratorObjCProvider.h │ │ │ │ │ ├── EventGeneratorObjCProvider.m │ │ │ │ │ ├── Xcode_10_1_Xcode_10_0_EventGeneratorObjC.h │ │ │ │ │ ├── Xcode_10_1_Xcode_10_0_EventGeneratorObjC.m │ │ │ │ │ ├── Xcode_10_2_Xcode_11_0EventGeneratorObjC.m │ │ │ │ │ └── Xcode_10_2_Xcode_11_0_EventGeneratorObjC.h │ │ │ ├── SimpleGestures │ │ │ │ ├── XcuiCoordinateElementSimpleGestures.swift │ │ │ │ ├── XcuiElementElementSimpleGestures.swift │ │ │ │ └── XcuiElementSimpleGesturesProvider.swift │ │ │ ├── TextTyper │ │ │ │ └── XcuiTextTyper.swift │ │ │ ├── XcuiApplicationStateProvider.swift │ │ │ ├── XcuiElementHierarchyDescriptionProvider.swift │ │ │ ├── XcuiElementInteractionDependenciesFactory.swift │ │ │ └── XcuiMenuItemProvider │ │ │ │ ├── XcuiElementMenuItem.swift │ │ │ │ └── XcuiMenuItemProvider.swift │ │ ├── AlwaysFailingIpcClient.swift │ │ ├── ApplicationCoordinatesProvider │ │ │ ├── ApplicationCoordinatesProvider.swift │ │ │ └── ApplicationCoordinatesProviderImpl.swift │ │ ├── ApplicationFrameProvider │ │ │ └── XcuiApplicationFrameProvider.swift │ │ ├── ApplicationLifecycleObservable │ │ │ ├── ApplicationLifecycleObservable.swift │ │ │ ├── ApplicationLifecycleObservableImpl.swift │ │ │ └── ApplicationLifecycleObserver.swift │ │ ├── ApplicationProvider │ │ │ ├── ApplicationProvider.swift │ │ │ └── ApplicationProviderImpl.swift │ │ ├── Permissions │ │ │ ├── FbxctestFriendlyTcc │ │ │ │ └── Fbxctest │ │ │ │ │ ├── AtApplicationLaunchTccDbApplicationPermissionSetter.swift │ │ │ │ │ └── AtApplicationLaunchTccDbApplicationPermissionSetterFactory.swift │ │ │ └── Notifications │ │ │ │ └── FakeSettingsApp │ │ │ │ ├── FakeSettingsAppNotificationsApplicationPermissionSetter.swift │ │ │ │ └── FakeSettingsAppNotificationsApplicationPermissionSetterFactory.swift │ │ ├── Screenshots │ │ │ ├── XcuiApplicationScreenshotTaker.swift │ │ │ └── XcuiDeviceScreenshotTaker.swift │ │ └── WaitingForQuescence │ │ │ └── XcuiApplicationQuiescenceWaiter.swift │ │ └── XcuiPageObjectDependenciesFactory.swift ├── BuiltinDi │ └── Sources │ │ ├── DependencyInjection │ │ ├── BuiltinDependencyInjection.swift │ │ ├── BuiltinDependencyInjectionFactory.swift │ │ └── RegisteredDependency.swift │ │ └── Support │ │ └── HashableType.swift ├── BuiltinIpc │ ├── README.md │ └── Sources │ │ ├── Client │ │ └── IpcClientImpl.swift │ │ ├── Common │ │ ├── BonjourServiceSettings.swift │ │ ├── Callback │ │ │ ├── Callbacks.md │ │ │ ├── Client │ │ │ │ └── IpcClientHolder.swift │ │ │ ├── IpcCallback.swift │ │ │ ├── Methods │ │ │ │ ├── CallIpcCallbackIpcMethod.swift │ │ │ │ └── CallIpcCallbackIpcMethodHandler.swift │ │ │ └── Storage │ │ │ │ ├── IpcCallbackStorage.swift │ │ │ │ ├── IpcCallbackStorageHolder.swift │ │ │ │ └── IpcCallbackStorageImpl.swift │ │ ├── Coding │ │ │ ├── DecoderFactory.swift │ │ │ ├── DecoderFactoryImpl.swift │ │ │ ├── EncoderFactory.swift │ │ │ └── EncoderFactoryImpl.swift │ │ ├── Constants.swift │ │ ├── Handshaking │ │ │ ├── Bonjour │ │ │ │ ├── BonjourHandshake.md │ │ │ │ ├── BonjourHandshakeSender.swift │ │ │ │ ├── BonjourHandshakeWaiter.swift │ │ │ │ ├── BonjourIpcService.swift │ │ │ │ ├── BonjourIpcServiceDiscoverer.swift │ │ │ │ └── Discovery │ │ │ │ │ └── LowLevel │ │ │ │ │ ├── BonjourBrowser.swift │ │ │ │ │ └── NetServiceAddressResolver.swift │ │ │ ├── Common │ │ │ │ ├── HandshakeIpcMethod.swift │ │ │ │ ├── HandshakeIpcMethodHandler.swift │ │ │ │ └── HandshakeTools.swift │ │ │ ├── Handshaking.md │ │ │ └── KnownPort │ │ │ │ ├── KnownPortHandshake.md │ │ │ │ ├── KnownPortHandshakeSender.swift │ │ │ │ └── KnownPortHandshakeWaiter.swift │ │ ├── MethodNameContainer.swift │ │ ├── RequestContainer.swift │ │ ├── ResponseContainer.swift │ │ └── Routes.swift │ │ └── Server │ │ ├── GCDWebServerErrorResponse+Swift.h │ │ ├── GCDWebServerErrorResponse+Swift.m │ │ └── IpcRouterImpl.swift ├── CocoaImageHashing │ ├── README.md │ └── Sources │ │ ├── CocoaImageHashing.h │ │ ├── OSAHash.h │ │ ├── OSAHash.m │ │ ├── OSAbstractHash.h │ │ ├── OSAbstractHash.m │ │ ├── OSCategories.h │ │ ├── OSCategories.m │ │ ├── OSDHash.h │ │ ├── OSDHash.m │ │ ├── OSFastGraphics.h │ │ ├── OSFastGraphics.m │ │ ├── OSImageHashing.h │ │ ├── OSImageHashing.m │ │ ├── OSPHash.h │ │ ├── OSPHash.m │ │ ├── OSSimilaritySearch.h │ │ ├── OSSimilaritySearch.m │ │ ├── OSTypes+Internal.h │ │ ├── OSTypes.h │ │ ├── OSTypes.m │ │ ├── include │ │ └── module.modulemap │ │ └── shim.h ├── Di │ └── Sources │ │ ├── DependencyCollectionRegisterer │ │ ├── CompoundDependencyCollectionRegisterer.swift │ │ └── DependencyCollectionRegisterer.swift │ │ ├── DependencyInjection │ │ ├── DelegatingDependencyInjection.swift │ │ └── DependencyInjection.swift │ │ ├── DependencyInjectionFactory │ │ └── DependencyInjectionFactory.swift │ │ ├── DependencyRegisterer │ │ ├── DependencyRegisterer+RegisterMultiple.swift │ │ ├── DependencyRegisterer.swift │ │ └── MultipleDependenciesRegistrationContinuation.swift │ │ ├── DependencyResolver │ │ ├── CompoundDependencyResolver.swift │ │ ├── DependencyResolver.swift │ │ └── WeakDependencyResolver.swift │ │ └── Models │ │ ├── DiError.swift │ │ └── Scope.swift ├── FakeSettingsAppMain │ ├── README.md │ └── Sources │ │ ├── Application │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── MixboxFakeSettingsAppMain.h │ │ └── MixboxFakeSettingsAppMain.m │ │ ├── Docs │ │ └── Images │ │ │ ├── step_0_add_target.png │ │ │ ├── step_1_select_target_type.png │ │ │ ├── step_2_fill_parameters.png │ │ │ ├── step_3_see_reslts.png │ │ │ ├── step_4_replace_files.png │ │ │ ├── step_5_set_target_entitlements.png │ │ │ ├── step_6_change_project_settings.png │ │ │ ├── step_7_1_add_target_dependency.png │ │ │ ├── step_7_2_add_target_dependency.png │ │ │ └── step_7_3_review_target_dependencies.png │ │ ├── Example │ │ └── Entitlements.entitlements │ │ └── Permissions │ │ ├── NotificationPermissionsManager.h │ │ ├── NotificationPermissionsManager.m │ │ └── PrivateApi │ │ ├── Entitlements.h │ │ └── Entitlements.m ├── Foundation │ ├── README.md │ └── Sources │ │ ├── Assertions │ │ └── AssertionFailureRecorder.swift │ │ ├── Casting │ │ └── mb_cast.swift │ │ ├── Collections │ │ ├── CachingLazyMappingSequence.swift │ │ ├── IteratorOf.swift │ │ └── RandomAccessCollectionOf.swift │ │ ├── Concurrency │ │ ├── OnceToken │ │ │ ├── OnceToken.swift │ │ │ ├── ThreadSafeOnceToken.swift │ │ │ └── ThreadUnsafeOnceToken.swift │ │ └── ReadWriteLock │ │ │ └── ReadWriteLock.swift │ │ ├── CurrentAbsoluteTimeProvider │ │ ├── AbsoluteTime │ │ │ ├── AbsoluteTime.h │ │ │ └── AbsoluteTime.swift │ │ ├── CurrentAbsoluteTimeProvider.swift │ │ └── MachCurrentAbsoluteTimeProvider.swift │ │ ├── Date │ │ ├── DateProvider.swift │ │ └── SystemClockDateProvider.swift │ │ ├── DescriptionBuilding │ │ └── DebugDescriptionBuilder.swift │ │ ├── DeviceArchitectureProvider │ │ ├── DeviceArchitecture.swift │ │ ├── DeviceArchitectureProvider.swift │ │ └── DeviceArchitectureProviderImpl.swift │ │ ├── EnvironmentProvider │ │ ├── EnvironmentProvider.swift │ │ └── ProcessInfoEnvironmentProvider.swift │ │ ├── Errors │ │ ├── ErrorString+Map.swift │ │ ├── ErrorString.swift │ │ └── UnsupportedEnumCaseError.swift │ │ ├── Extensions │ │ ├── Collection+Extension.swift │ │ ├── NSLock+LockWhile.swift │ │ ├── Optional+Map.swift │ │ ├── Optional+Unwrap.swift │ │ ├── String+Conversion.swift │ │ ├── String+Indentation.swift │ │ ├── String+Path.swift │ │ └── Zip │ │ │ ├── Sequence+Zip.swift │ │ │ ├── ZippedSequences.swift │ │ │ └── ZippedSequencesElement.swift │ │ ├── MemoryManagement │ │ ├── Box.swift │ │ ├── MutableBox.swift │ │ └── WeakBox.swift │ │ ├── ObjectiveC │ │ ├── AssociatedObjects │ │ │ ├── AssociatedObject.swift │ │ │ └── AssociatedValue.swift │ │ └── Exceptions │ │ │ ├── ObjectiveCExceptionCatcher.swift │ │ │ └── ObjectiveCExceptionCatcherHelper.h │ │ ├── PerformanceLogging │ │ ├── MeasureableTimedActivityLogger │ │ │ ├── Graphite │ │ │ │ ├── API │ │ │ │ │ ├── AtomicModels │ │ │ │ │ │ ├── AtomicCollection.swift │ │ │ │ │ │ ├── AtomicValue.swift │ │ │ │ │ │ └── ConditionLock.swift │ │ │ │ │ ├── GraphiteClient │ │ │ │ │ │ ├── GraphiteClient.swift │ │ │ │ │ │ ├── GraphiteClientError.swift │ │ │ │ │ │ └── GraphiteMetric.swift │ │ │ │ │ └── IO │ │ │ │ │ │ ├── EasyOutputStream.swift │ │ │ │ │ │ ├── EasyOutputStreamError.swift │ │ │ │ │ │ ├── NetworkSocketOutputStreamProvider.swift │ │ │ │ │ │ └── OutputStreamProvider.swift │ │ │ │ ├── GraphiteMeasureableTimedActivity.swift │ │ │ │ ├── GraphiteMeasureableTimedActivityLogger.swift │ │ │ │ └── GraphiteMeasureableTimedActivityMetricSender │ │ │ │ │ ├── GraphiteMeasureableTimedActivityMetricSender.swift │ │ │ │ │ └── GraphiteMeasureableTimedActivityMetricSenderImpl.swift │ │ │ ├── MeasureableTimedActivity.swift │ │ │ ├── MeasureableTimedActivityLogger.swift │ │ │ ├── MeasureableTimedActivityMetricSenderWaiter │ │ │ │ ├── MeasureableTimedActivityMetricSenderWaiter.swift │ │ │ │ └── NoopGraphiteMeasureableTimedActivityMetricSenderWaiter.swift │ │ │ ├── Noop │ │ │ │ ├── NoopMeasureableTimedActivity.swift │ │ │ │ └── NoopMeasureableTimedActivityLogger.swift │ │ │ └── Signpost │ │ │ │ ├── SignpostLogger │ │ │ │ ├── SignpostLogger.swift │ │ │ │ ├── SignpostLoggerFactory.swift │ │ │ │ ├── SignpostLoggerFactoryImpl.swift │ │ │ │ └── SignpostLoggerImpl.swift │ │ │ │ ├── SignpostMeasureableTimedActivity.swift │ │ │ │ └── SignpostMeasureableTimedActivityLogger.swift │ │ └── PerformanceLogger │ │ │ ├── CompoundMeasureableTimedActivity.swift │ │ │ ├── NoopPerformanceLogger.swift │ │ │ ├── PerformanceLogger.swift │ │ │ ├── PerformanceLoggerDestination.swift │ │ │ └── PerformanceLoggerImpl.swift │ │ ├── Serialization │ │ └── GenericSerialization.swift │ │ ├── Swizzling │ │ ├── AssertingSwizzler │ │ │ ├── AssertingSwizzler.swift │ │ │ └── AssertingSwizzlerImpl.swift │ │ ├── Models │ │ │ ├── MethodType.swift │ │ │ └── SwizzlingResult.swift │ │ ├── Swizzler │ │ │ ├── Swizzler.swift │ │ │ └── SwizzlerImpl.swift │ │ └── SwizzlingSynchronization │ │ │ ├── SwizzlingSynchronization.swift │ │ │ └── SwizzlingSynchronizationImpl.swift │ │ ├── Types │ │ ├── AnyEquatable │ │ │ └── AnyEquatable.swift │ │ ├── Customization │ │ │ ├── CustomizableArray.swift │ │ │ └── CustomizableScalar.swift │ │ ├── FileLine │ │ │ ├── FileLine.swift │ │ │ ├── RuntimeFileLine.swift │ │ │ └── SourceCodeLineTypeConverter.swift │ │ ├── OptionalAvailability.swift │ │ └── Result │ │ │ └── DataResult.swift │ │ └── Waiter │ │ ├── RunLoop │ │ ├── RunLoopModesStackProvider │ │ │ ├── RunLoopModesStackProvider.swift │ │ │ └── RunLoopModesStackProviderImpl.swift │ │ ├── RunLoopSpinner │ │ │ ├── RunLoopSpinner.swift │ │ │ ├── RunLoopSpinnerImpl.swift │ │ │ ├── SpinUntilResult.swift │ │ │ └── SpinWhileResult.swift │ │ ├── RunLoopSpinnerFactory │ │ │ ├── RunLoopSpinnerFactory.swift │ │ │ └── RunLoopSpinnerFactoryImpl.swift │ │ ├── RunLoopSpinnerLock │ │ │ ├── RunLoopSpinnerLock.swift │ │ │ ├── RunLoopSpinnerLockImpl.swift │ │ │ └── RunLoopSpinnerLockWaitResult.swift │ │ └── RunLoopSpinnerLockFactory │ │ │ ├── RunLoopSpinnerLockFactory.swift │ │ │ └── RunLoopSpinnerLockFactoryImpl.swift │ │ ├── RunLoopSpinningWaiter.swift │ │ ├── RunLoopSpinningWaiterImpl.swift │ │ ├── Waiter+While.swift │ │ └── Waiter.swift ├── Generators │ └── Sources │ │ ├── AnyGenerator │ │ ├── AnyGenerator.swift │ │ ├── AnyGeneratorImpl.swift │ │ └── TypeErased │ │ │ ├── HashableType │ │ │ └── HashableType.swift │ │ │ ├── Specializations │ │ │ ├── TypeErasedAnyGeneratorSpecialization.swift │ │ │ └── TypeErasedAnyGeneratorSpecializationImpl.swift │ │ │ ├── TypeErasedAnyGenerator.swift │ │ │ └── TypeErasedAnyGeneratorImpl.swift │ │ ├── DefaultGeneratorProvider │ │ ├── DefaultGeneratorProvider.swift │ │ ├── DefaultGeneratorResolvingStrategy.swift │ │ ├── Extensions │ │ │ ├── Collections │ │ │ │ ├── Array+DefaultGeneratorProvider.swift │ │ │ │ ├── Dictionary+DefaultGeneratorProvider.swift │ │ │ │ ├── Optional+DefaultGeneratorProvider.swift │ │ │ │ ├── Set+DefaultGeneratorProvider.swift │ │ │ │ └── Support │ │ │ │ │ └── DependencyResolver+Extensions.swift │ │ │ └── Enums │ │ │ │ ├── CaseGeneratable │ │ │ │ ├── AllCasesGenerators.swift │ │ │ │ ├── CaseGeneratable+DefaultGeneratorProvider.swift │ │ │ │ └── CaseGeneratable.swift │ │ │ │ └── CaseIterable │ │ │ │ └── CaseIterable+DefaultGeneratorProvider.swift │ │ └── TypeErasedDefaultGeneratorProvider.swift │ │ ├── DynamicLookup │ │ ├── Dependencies │ │ │ ├── DynamicLookupGeneratorFactory │ │ │ │ ├── DynamicLookupGeneratorFactory.swift │ │ │ │ └── DynamicLookupGeneratorFactoryImpl.swift │ │ │ ├── GeneratorByKeyPath.swift │ │ │ └── NestedDynamicLookupGeneratorStubber │ │ │ │ └── NestedDynamicLookupGeneratorStubber.swift │ │ ├── DynamicLookupGenerator.swift │ │ └── Fields │ │ │ └── DynamicLookupGeneratorFields.swift │ │ ├── Fields │ │ ├── FailableProperty.swift │ │ └── Fields.swift │ │ ├── GeneratableByFields │ │ ├── ByFieldsGenerator │ │ │ └── ByFieldsGenerator.swift │ │ ├── ByFieldsGeneratorResolver │ │ │ ├── ByFieldsGeneratorResolver.swift │ │ │ └── ByFieldsGeneratorResolverImpl.swift │ │ ├── GeneratableByFields.swift │ │ ├── InitializableWithFields.swift │ │ ├── RepresentableByFields.swift │ │ └── TypeErasedGeneratableByFields.swift │ │ └── Generator │ │ ├── Generator.swift │ │ ├── Generators │ │ ├── Foundation │ │ │ └── RandomUrlGenerator.swift │ │ └── Swift │ │ │ ├── ConstantGenerator.swift │ │ │ ├── Empty │ │ │ ├── EmptyArrayGenerator.swift │ │ │ ├── EmptyDictionaryGenerator.swift │ │ │ ├── EmptyOptionalGenerator.swift │ │ │ └── EmptySetGenerator.swift │ │ │ └── Random │ │ │ ├── RandomArrayGenerator.swift │ │ │ ├── RandomBoolGenerator.swift │ │ │ ├── RandomDictionaryGenerator.swift │ │ │ ├── RandomFloatGenerator.swift │ │ │ ├── RandomIntegerGenerator.swift │ │ │ ├── RandomOptionalGenerator.swift │ │ │ ├── RandomSetGenerator.swift │ │ │ └── RandomStringGenerator.swift │ │ ├── Random │ │ ├── MersenneTwisterRandomNumberProvider.swift │ │ ├── OverflowingUInt64.swift │ │ └── RandomNumberProvider.swift │ │ └── Support │ │ └── GeneratorError.swift ├── Gray │ └── Sources │ │ ├── Di │ │ ├── Interaction │ │ │ └── GrayElementInteractionDependenciesFactory.swift │ │ ├── PageObjects │ │ │ └── GrayPageObjectDependenciesFactory.swift │ │ └── Registerers │ │ │ └── GrayBoxDependencies.swift │ │ └── Utils │ │ ├── CodeStubs │ │ └── CodeStubs.swift │ │ ├── Gestures │ │ ├── Facades │ │ │ ├── ElementSimpleGestures │ │ │ │ ├── GrayElementSimpleGestures.swift │ │ │ │ └── GrayElementSimpleGesturesProvider.swift │ │ │ └── EventGenerator │ │ │ │ └── GrayEventGenerator.swift │ │ ├── Support │ │ │ └── PathGestureUtils │ │ │ │ ├── PathGestureUtils.swift │ │ │ │ ├── PathGestureUtilsFactory.swift │ │ │ │ ├── PathGestureUtilsFactoryImpl.swift │ │ │ │ └── PathGestureUtilsImpl.swift │ │ └── Touches │ │ │ ├── MultiTouchCommandExecutor │ │ │ ├── MultiTouchCommand.swift │ │ │ ├── MultiTouchCommandExecutor.swift │ │ │ └── MultiTouchCommandExecutorImpl.swift │ │ │ ├── MultiTouchInfo │ │ │ ├── DequeuedMultiTouchInfo.swift │ │ │ └── EnqueuedMultiTouchInfo.swift │ │ │ ├── TouchEventFactory │ │ │ ├── AggregatingTouchEventFactory │ │ │ │ ├── AggregatingTouchEventFactory.swift │ │ │ │ └── AggregatingTouchEventFactoryImpl.swift │ │ │ ├── FingerTouchEventFactory │ │ │ │ ├── FingerTouchEventFactory.swift │ │ │ │ └── FingerTouchEventFactoryImpl.swift │ │ │ └── MultiTouchEventFactory │ │ │ │ ├── MultiTouchEventFactory.swift │ │ │ │ └── MultiTouchEventFactoryImpl.swift │ │ │ ├── TouchInjector │ │ │ ├── TouchInjector.swift │ │ │ └── TouchInjectorImpl.swift │ │ │ ├── TouchInjectorFactory │ │ │ ├── TouchInjectorFactory.swift │ │ │ └── TouchInjectorFactoryImpl.swift │ │ │ └── TouchPerformer │ │ │ ├── TouchPerformer.swift │ │ │ └── TouchPerformerImpl.swift │ │ ├── GrayApplicationFrameProvider.swift │ │ ├── GrayApplicationStateProvider.swift │ │ ├── GrayElementHierarchyDescriptionProvider.swift │ │ ├── MenuItem │ │ ├── GrayMenuItem.swift │ │ └── GrayMenuItemProvider.swift │ │ ├── Networking │ │ ├── GrayBoxLegacyNetworking.swift │ │ └── Stubbing │ │ │ ├── GrayBoxLegacyNetworkStubbing.swift │ │ │ ├── GrayBoxLegacyNetworkStubbingStubResponseBuilder.swift │ │ │ ├── Stubs │ │ │ ├── GrayBoxLegacyNetworkStubbingNetworkStub.swift │ │ │ └── GrayBoxLegacyNetworkStubbingNetworkStubRepository.swift │ │ │ └── UrlProtocol │ │ │ ├── GrayBoxLegacyNetworkStubbingBridgedUrlProtocolClass.swift │ │ │ └── GrayBoxLegacyNetworkStubbingBridgedUrlProtocolInstance.swift │ │ ├── PrivateHeaders │ │ └── AppleInternals.h │ │ ├── Screenshots │ │ └── GrayScreenshotTaker.swift │ │ ├── TextTyper │ │ └── GrayTextTyper.swift │ │ ├── Waiting │ │ └── ApplicationQuiescenceWaiter │ │ │ └── GrayApplicationQuiescenceWaiter.swift │ │ └── ZeroToleranceTimer │ │ ├── New Group │ │ └── ZeroToleranceTimerTarget.swift │ │ ├── Sheduler │ │ ├── ZeroToleranceTimerScheduler.swift │ │ └── ZeroToleranceTimerSchedulerImpl.swift │ │ └── Started │ │ ├── ScheduledZeroToleranceTimer.swift │ │ └── ScheduledZeroToleranceTimerImpl.swift ├── InAppServices │ ├── README.md │ └── Sources │ │ ├── Features │ │ ├── AccessibilityEnchancement │ │ │ ├── CheckVisibilityIpcMethodHandler.swift │ │ │ └── Support │ │ │ │ ├── Accessibility │ │ │ │ ├── AccessibilityEnhancer │ │ │ │ │ ├── AccessibilityEnhancer.swift │ │ │ │ │ └── AccessibilityEnhancerImpl.swift │ │ │ │ ├── AccessibilityLabelFunctionReplacement │ │ │ │ │ ├── AccessibilityLabelFunctionReplacement.swift │ │ │ │ │ └── AccessibilityLabelFunctionReplacementImpl.swift │ │ │ │ ├── AccessibilityLabelSwizzler │ │ │ │ │ ├── AccessibilityLabelSwizzler.swift │ │ │ │ │ └── AllMethodsWithUniqueImplementationAccessibilityLabelSwizzler.swift │ │ │ │ ├── AccessibilityLabelSwizzlerFactory │ │ │ │ │ ├── AccessibilityLabelSwizzlerFactory.swift │ │ │ │ │ ├── AccessibilityLabelSwizzlerFactoryImpl.swift │ │ │ │ │ └── AllMethodsWithUniqueImplementationAccessibilityLabelSwizzlerFactory │ │ │ │ │ │ ├── AllMethodsWithUniqueImplementationAccessibilityLabelSwizzlerFactory.swift │ │ │ │ │ │ └── AllMethodsWithUniqueImplementationAccessibilityLabelSwizzlerFactoryImpl.swift │ │ │ │ ├── AccessibilityUniqueObjectMap │ │ │ │ │ ├── AccessibilityUniqueObjectMap.swift │ │ │ │ │ └── AccessibilityUniqueObjectMapImpl.swift │ │ │ │ ├── EnhancedAccessibilityLabelMethodSwizzler │ │ │ │ │ ├── EnhancedAccessibilityLabelMethodSwizzler.swift │ │ │ │ │ └── EnhancedAccessibilityLabelMethodSwizzlerImpl.swift │ │ │ │ ├── ObjcMethodsWithUniqueImplementationProvider │ │ │ │ │ ├── ObjcMethodWithUniqueImplementation.swift │ │ │ │ │ ├── ObjcMethodsWithUniqueImplementationProvider.swift │ │ │ │ │ ├── ObjcRuntimeObjcMethodsWithUniqueImplementationProvider │ │ │ │ │ │ └── ObjcRuntimeObjcMethodsWithUniqueImplementationProvider.swift │ │ │ │ │ └── PredefinedObjcMethodsWithUniqueImplementationProvider │ │ │ │ │ │ ├── PredefinedObjcMethodsWithUniqueImplementationBatch.swift │ │ │ │ │ │ └── PredefinedObjcMethodsWithUniqueImplementationProvider.swift │ │ │ │ ├── PredefinedObjcMethodsWithUniqueImplementationBatchesFactory │ │ │ │ │ ├── PredefinedObjcMethodsWithUniqueImplementationBatchesFactory.swift │ │ │ │ │ └── PredefinedObjcMethodsWithUniqueImplementationBatchesFactoryImpl.swift │ │ │ │ └── UIView+AccessibilityVisibility.swift │ │ │ │ ├── FakeCells │ │ │ │ └── Swizzling │ │ │ │ │ ├── FakeCellsSwizzling │ │ │ │ │ ├── FakeCellsSwizzling.swift │ │ │ │ │ └── FakeCellsSwizzlingImpl.swift │ │ │ │ │ ├── TargetClasses │ │ │ │ │ ├── CollectionViewCellSwizzler │ │ │ │ │ │ ├── CollectionViewCellSwizzler.swift │ │ │ │ │ │ └── CollectionViewCellSwizzlerImpl.swift │ │ │ │ │ └── CollectionViewSwizzler │ │ │ │ │ │ ├── CollectionViewSwizzler.swift │ │ │ │ │ │ └── CollectionViewSwizzlerImpl.swift │ │ │ │ │ └── Utils │ │ │ │ │ ├── FakeCellManagerCollectionViewUpdatesActivityImpl.swift │ │ │ │ │ ├── FakeCellManagerImpl.swift │ │ │ │ │ └── ThreadLocalObject.swift │ │ │ │ ├── Scrolling │ │ │ │ ├── CopiedFromAvitoCollectionView │ │ │ │ │ ├── KeyboardFrameChange.swift │ │ │ │ │ ├── KeyboardFrameProvider.swift │ │ │ │ │ └── KeyboardFrameProviderImpl.swift │ │ │ │ └── ScrollingHintsForViewProvider │ │ │ │ │ ├── ScrollingHintsForViewProvider.swift │ │ │ │ │ └── ScrollingHintsForViewProviderImpl.swift │ │ │ │ └── VisibilityChecker │ │ │ │ ├── Extensions │ │ │ │ ├── CGImage+Extensions.swift │ │ │ │ ├── CGPoint+Extensions.swift │ │ │ │ ├── CGRect+Extensions.swift │ │ │ │ └── CGSize+Extensions.swift │ │ │ │ ├── ImageFromImagePixelDataCreator │ │ │ │ ├── ImageFromImagePixelDataCreator.swift │ │ │ │ └── ImageFromImagePixelDataCreatorImpl.swift │ │ │ │ ├── ImagePixelDataCreator │ │ │ │ ├── ImagePixelData.swift │ │ │ │ ├── ImagePixelDataCreator.swift │ │ │ │ └── ImagePixelDataCreatorImpl.swift │ │ │ │ ├── Models │ │ │ │ ├── IntPoint.swift │ │ │ │ ├── IntRect.swift │ │ │ │ ├── IntSize.swift │ │ │ │ └── UnsafeArray.swift │ │ │ │ ├── OrderedWindowsProvider │ │ │ │ ├── OrderedWindowsProvider.swift │ │ │ │ └── OrderedWindowsProviderImpl.swift │ │ │ │ ├── Screenshots │ │ │ │ ├── InAppScreenshotTaker │ │ │ │ │ ├── InAppScreenshotTaker.swift │ │ │ │ │ └── InAppScreenshotTakerImpl.swift │ │ │ │ ├── ScreenInContextDrawer │ │ │ │ │ ├── ScreenInContextDrawer.swift │ │ │ │ │ └── ScreenInContextDrawerImpl.swift │ │ │ │ ├── ScreenInContextDrawerTopViewPatcher │ │ │ │ │ ├── ScreenInContextDrawerTopViewPatcher.swift │ │ │ │ │ └── ScreenInContextDrawerTopViewPatcherImpl.swift │ │ │ │ └── ViewInContextDrawer │ │ │ │ │ ├── ViewInContextDrawer.swift │ │ │ │ │ └── ViewInContextDrawerImpl.swift │ │ │ │ ├── VisibilityCheckForLoopOptimizer │ │ │ │ ├── VisibilityCheckForLoopOptimizer.swift │ │ │ │ ├── VisibilityCheckForLoopOptimizerFactory.swift │ │ │ │ ├── VisibilityCheckForLoopOptimizerFactoryImpl.swift │ │ │ │ └── VisibilityCheckForLoopOptimizerImpl.swift │ │ │ │ ├── VisibilityCheckImageColorShifter │ │ │ │ ├── VisibilityCheckImageColorShifter.swift │ │ │ │ └── VisibilityCheckImageColorShifterImpl.swift │ │ │ │ ├── VisibilityCheckImagesCapturer │ │ │ │ ├── VisibilityCheckImagesCaptureResult.swift │ │ │ │ ├── VisibilityCheckImagesCapturer.swift │ │ │ │ └── VisibilityCheckImagesCapturerImpl.swift │ │ │ │ ├── VisibilityChecker.md │ │ │ │ ├── VisibilityChecker │ │ │ │ ├── NonView │ │ │ │ │ ├── NonViewVisibilityChecker.swift │ │ │ │ │ ├── NonViewVisibilityCheckerImpl.swift │ │ │ │ │ └── NonViewVisibilityCheckerResult.swift │ │ │ │ └── View │ │ │ │ │ ├── ViewVisibilityChecker.swift │ │ │ │ │ ├── ViewVisibilityCheckerArguments.swift │ │ │ │ │ ├── ViewVisibilityCheckerImpl.swift │ │ │ │ │ └── ViewVisibilityCheckerResult.swift │ │ │ │ └── VisiblePixelDataCalculator │ │ │ │ ├── VisibilityCheckTargetCoordinates.swift │ │ │ │ ├── VisiblePixelData.swift │ │ │ │ ├── VisiblePixelDataCalculator.swift │ │ │ │ └── VisiblePixelDataCalculatorImpl.swift │ │ ├── AssertionFailures │ │ │ ├── GetRecordedAssertionFailuresIpcMethodHandler.swift │ │ │ ├── RecordedAssertionFailuresHolders │ │ │ │ ├── RecordedAssertionFailuresHolder.swift │ │ │ │ └── RecordedAssertionFailuresProvider.swift │ │ │ └── SwiftAssertionFailureRecorder.swift │ │ ├── Info │ │ │ ├── GetUiScreenMainBoundsIpcMethodHandler.swift │ │ │ └── GetUiScreenMainScaleIpcMethodHandler.swift │ │ ├── Keyboard │ │ │ ├── ExposingKeyboard │ │ │ │ ├── KeyboardWindowExposer.swift │ │ │ │ ├── KeyboardWindowExposerImpl.swift │ │ │ │ ├── Models │ │ │ │ │ ├── ExposedKeyboard.swift │ │ │ │ │ ├── ExposedKeyboardWindows.swift │ │ │ │ │ ├── KeyboardDrawingMode.swift │ │ │ │ │ └── KeyboardWindowExposerResult.swift │ │ │ │ └── Support │ │ │ │ │ ├── KeyboardWindowExposerPrecondition.swift │ │ │ │ │ ├── KeyboardWindowExposerPreconditionValidator.swift │ │ │ │ │ └── KeyboardWindowExposerPreconditionValidatorResult.swift │ │ │ ├── KeyboardEventsInjection │ │ │ │ ├── InjectKeyboardEventsIpcMethodHandler.swift │ │ │ │ └── KeyboardEventInjectorImpl.swift │ │ │ ├── PrivateApi │ │ │ │ ├── PrivateHeaders │ │ │ │ │ ├── UIKBShape.h │ │ │ │ │ ├── UIKBTree.h │ │ │ │ │ ├── UIKeyboardImpl.h │ │ │ │ │ └── UIKeyboardLayout.h │ │ │ │ └── SwiftWrappers │ │ │ │ │ ├── KeyboardLayout.swift │ │ │ │ │ ├── KeyboardPrivateApi.swift │ │ │ │ │ ├── KeyboardShape.swift │ │ │ │ │ ├── KeyboardTree.swift │ │ │ │ │ └── PrivateClassWrapper.swift │ │ │ └── Testability │ │ │ │ ├── UIKBTree+Testability.h │ │ │ │ ├── UIKBTree+Testability.m │ │ │ │ ├── UIKBTreeTestablity.swift │ │ │ │ ├── UIKeyboardLayout+Testability.h │ │ │ │ ├── UIKeyboardLayout+Testability.m │ │ │ │ ├── UIKeyboardLayoutTestability.swift │ │ │ │ └── handleErrorInTestabilityElementMethod.swift │ │ ├── LocationSimulation │ │ │ ├── CLSimulationManager.h │ │ │ ├── IpcMethods │ │ │ │ ├── SimulateLocationIpcMethodHandler.swift │ │ │ │ └── StopLocationSimulationIpcMethodHandler.swift │ │ │ └── LocationSimulationManager │ │ │ │ ├── LocationSimulationManager.swift │ │ │ │ └── LocationSimulationManagerImpl.swift │ │ ├── NetworkMocking │ │ │ ├── Bootstrapping │ │ │ │ ├── MixboxUrlProtocolBootstrapperFactory │ │ │ │ │ ├── MixboxUrlProtocolBootstrapperFactory.swift │ │ │ │ │ ├── MixboxUrlProtocolBootstrapperFactoryImpl.swift │ │ │ │ │ └── NetworkMockingBootstrappingType.swift │ │ │ │ └── NetworkMockingBootstrapper │ │ │ │ │ ├── MixboxUrlProtocolBootstrapper.swift │ │ │ │ │ └── MixboxUrlProtocolBootstrapperImpl.swift │ │ │ ├── BridgedUrlProtocolImplementations │ │ │ │ ├── BridgedUrlProtocolClient │ │ │ │ │ └── InProcessBridgedUrlProtocolClient.swift │ │ │ │ └── BridgedUrlProtocolInstance │ │ │ │ │ ├── IpcBridgedUrlProtocolClass.swift │ │ │ │ │ └── IpcBridgedUrlProtocolInstance.swift │ │ │ ├── Converters │ │ │ │ ├── CachedUrlResponseBridging.swift │ │ │ │ ├── Impls │ │ │ │ │ ├── CachedUrlResponseBridgingImpl.swift │ │ │ │ │ ├── UrlCacheStoragePolicyBridgingImpl.swift │ │ │ │ │ ├── UrlRequestBridgingImpl.swift │ │ │ │ │ ├── UrlRequestCachePolicyBridgingImpl.swift │ │ │ │ │ ├── UrlRequestNetworkServiceTypeBridgingImpl.swift │ │ │ │ │ └── UrlResponseBridgingImpl.swift │ │ │ │ ├── UrlCacheStoragePolicyBridging.swift │ │ │ │ ├── UrlRequestBridging.swift │ │ │ │ ├── UrlRequestCachePolicyBridging.swift │ │ │ │ ├── UrlRequestNetworkServiceTypeBridging.swift │ │ │ │ └── UrlResponseBridging.swift │ │ │ ├── MethodHandlers │ │ │ │ ├── UrlProtocolClient │ │ │ │ │ ├── UrlProtocolCachedResponseIsValidIpcMethodHandler.swift │ │ │ │ │ ├── UrlProtocolDidFailWithErrorIpcMethodHandler.swift │ │ │ │ │ ├── UrlProtocolDidFinishLoadingIpcMethodHandler.swift │ │ │ │ │ ├── UrlProtocolDidLoadIpcMethodHandler.swift │ │ │ │ │ ├── UrlProtocolDidReceiveIpcMethodHandler.swift │ │ │ │ │ └── UrlProtocolWasRedirectedToIpcMethodHandler.swift │ │ │ │ └── UrlProtocolRegistration │ │ │ │ │ ├── UrlProtocolRegisterBridgedUrlProtocolClassIpcMethodHandler.swift │ │ │ │ │ └── UrlProtocolUnregisterBridgedUrlProtocolClassIpcMethodHandler.swift │ │ │ └── MixboxUrlProtocol │ │ │ │ ├── BridgedUrlProtocolInstanceProvider │ │ │ │ └── BridgedUrlProtocolInstanceProvider.swift │ │ │ │ ├── Dependencies │ │ │ │ ├── FoundationNetworkModelsBridgingFactory │ │ │ │ │ ├── FoundationNetworkModelsBridgingFactory.swift │ │ │ │ │ └── FoundationNetworkModelsBridgingFactoryImpl.swift │ │ │ │ ├── MixboxUrlProtocolDependencies.swift │ │ │ │ └── MixboxUrlProtocolDependenciesFactory │ │ │ │ │ ├── IpcMixboxUrlProtocolDependenciesFactory.swift │ │ │ │ │ ├── IpcMixboxUrlProtocolIpcMethodHandlersRegisterer.swift │ │ │ │ │ └── MixboxUrlProtocolDependenciesFactory.swift │ │ │ │ └── MixboxUrlProtocol.swift │ │ ├── OpenUrl │ │ │ └── OpenUrlIpcMethodHandler.swift │ │ ├── PageObjectMakingHelper │ │ │ ├── AlertDisplayer │ │ │ │ ├── DisplayAlertIpcMethodHandler.swift │ │ │ │ └── InAppAlertDisplayer.swift │ │ │ └── PageObjectElementGenerationWizardRunner │ │ │ │ ├── IPC │ │ │ │ └── RunPageObjectElementGenerationWizardIpcMethodHandler.swift │ │ │ │ ├── Runner │ │ │ │ └── InAppPageObjectElementGenerationWizardRunner.swift │ │ │ │ └── Wizard │ │ │ │ ├── Presenter │ │ │ │ ├── PageObjectElementGenerationWizard.swift │ │ │ │ └── PageObjectElementGenerationWizardImpl.swift │ │ │ │ └── View │ │ │ │ └── PageObjectElementGenerationWizardView.swift │ │ ├── Pasteboard │ │ │ ├── GetPasteboardStringIpcMethodHandler.swift │ │ │ └── SetPasteboardStringIpcMethodHandler.swift │ │ ├── Scrolling │ │ │ └── ScrollingHintIpcMethodHandler.swift │ │ ├── UiEventObserving │ │ │ ├── Observable │ │ │ │ ├── Delegation │ │ │ │ │ └── UiEventObservableImpl.swift │ │ │ │ ├── Provider │ │ │ │ │ ├── UiEventObservableHolder.swift │ │ │ │ │ ├── UiEventObservableProvider.swift │ │ │ │ │ └── UiEventObservableSetter.swift │ │ │ │ ├── UiEventObservable.swift │ │ │ │ └── Window │ │ │ │ │ └── UiEventObservingWindow.swift │ │ │ └── Observers │ │ │ │ ├── Support │ │ │ │ ├── UiEventObserverFeatureToggleIpcMethodHandler.swift │ │ │ │ ├── UiEventObserverFeatureToggleValueGetter.swift │ │ │ │ ├── UiEventObserverFeatureToggleValueSetter.swift │ │ │ │ └── UiEventObserverFeatureToggler.swift │ │ │ │ ├── TouchDrawer │ │ │ │ ├── FadeOutView.swift │ │ │ │ └── TouchDrawer.swift │ │ │ │ ├── UiEventHistory │ │ │ │ ├── IpcMethodHandlers │ │ │ │ │ └── GetUiEventHistoryIpcMethodHandler.swift │ │ │ │ └── Support │ │ │ │ │ ├── UiEventHistoryProvider.swift │ │ │ │ │ └── UiEventHistoryTracker.swift │ │ │ │ ├── UiEventObserver.swift │ │ │ │ └── UiEventObserverResult.swift │ │ ├── ViewHierarchy │ │ │ ├── Support │ │ │ │ ├── TestabilityElementTypeConverter.swift │ │ │ │ ├── ViewHierarchyElementTypeConverter.swift │ │ │ │ └── ViewHierarchyProvider │ │ │ │ │ ├── InProcessViewHierarchyProvider.swift │ │ │ │ │ └── ViewHierarchy │ │ │ │ │ ├── DtoViewHierarchy.swift │ │ │ │ │ ├── SwiftUIViewHierarchyElementExtractor.swift │ │ │ │ │ └── TestabilityElementViewHierarchyElement.swift │ │ │ └── ViewHierarchyIpcMethodHandler.swift │ │ └── WaitingForQuiescence │ │ │ ├── CoreAnimation │ │ │ ├── CAAnimationIdlingSupport.swift │ │ │ ├── CAAnimationState.swift │ │ │ ├── CALayerIdlingSupport.swift │ │ │ ├── CoreAnimationIdlingResourceSwizzler.swift │ │ │ ├── CoreAnimationIdlingResourceSwizzlerImpl.swift │ │ │ └── SurrogateCAAnimationDelegate │ │ │ │ ├── SurrogateCAAnimationDelegateFactory.swift │ │ │ │ ├── SurrogateCAAnimationDelegateObjC.h │ │ │ │ ├── SurrogateCAAnimationDelegateObjC.m │ │ │ │ └── SurrogateCAAnimationDelegateSwift.swift │ │ │ ├── IdlingResourceObjectTracker │ │ │ ├── IdlingResourceObjectTracker.swift │ │ │ ├── TrackedIdlingResource.swift │ │ │ └── TrackedIdlingResourceDescription.swift │ │ │ ├── IdlingResources │ │ │ ├── IdlingResource.swift │ │ │ └── IdlingResource │ │ │ │ └── Impls │ │ │ │ ├── CompoundIdlingResource.swift │ │ │ │ └── KeyboardIdlingResource.swift │ │ │ ├── ScrollView │ │ │ ├── ScrollViewIdlingResourceSwizzler.swift │ │ │ └── ScrollViewIdlingResourceSwizzlerImpl.swift │ │ │ ├── UIAnimation │ │ │ ├── UiAnimationIdlingResourceSwizzler.swift │ │ │ └── UiAnimationIdlingResourceSwizzlerImpl.swift │ │ │ └── ViewController │ │ │ ├── ViewControllerIdlingResourceSwizzler.swift │ │ │ └── ViewControllerIdlingResourceSwizzlerImpl.swift │ │ ├── InAppServices │ │ ├── InAppServices.swift │ │ ├── InAppServicesImpl.swift │ │ ├── InAppServicesStarter │ │ │ ├── InAppServicesStarter.swift │ │ │ └── InAppServicesStarterImpl.swift │ │ └── StartedInAppServices.swift │ │ └── Support │ │ ├── AccessibilityForTestAutomation │ │ ├── AccessibilityForTestAutomationInitializer │ │ │ ├── AccessibilityForTestAutomationInitializer.swift │ │ │ └── Implementation │ │ │ │ ├── NoopAccessibilityForTestAutomationInitializer.swift │ │ │ │ ├── ObjectiveC │ │ │ │ ├── AccessibilityUtilitiesAccessibilityInitializer │ │ │ │ │ ├── AccessibilityUtilitiesAccessibilityInitializer.h │ │ │ │ │ └── AccessibilityUtilitiesAccessibilityInitializer.m │ │ │ │ ├── LibAccessibilityAccessibilityInitializer │ │ │ │ │ ├── LibAccessibilityAccessibilityInitializer.h │ │ │ │ │ └── LibAccessibilityAccessibilityInitializer.m │ │ │ │ ├── LoadSimulatorRuntimeLibrary.h │ │ │ │ └── UIAccessibilityAccessibilityInitializer │ │ │ │ │ ├── UIAccessibilityAccessibilityInitializer.h │ │ │ │ │ └── UIAccessibilityAccessibilityInitializer.m │ │ │ │ └── PrivateApiAccessibilityForTestAutomationInitializer.swift │ │ ├── AccessibilityInitializationStatusProvider │ │ │ ├── AccessibilityInitializationStatusProvider.swift │ │ │ └── AccessibilityInitializationStatusProviderImpl.swift │ │ └── Models │ │ │ └── AccessibilityInitializationStatus.swift │ │ ├── DI │ │ ├── InAppServicesAndGrayBoxSharedDependencyCollectionRegisterer.swift │ │ └── InAppServicesDefaultDependencyCollectionRegisterer.swift │ │ ├── Extensions │ │ └── Selector+PrivateName.swift │ │ ├── FloatValuesForSr5346Patcher │ │ ├── FloatValuesForSr5346Patcher.swift │ │ ├── FloatValuesForSr5346PatcherImpl.swift │ │ └── NoopFloatValuesForSr5346Patcher.swift │ │ ├── IPC │ │ ├── IpcMethodRegistration │ │ │ ├── IpcMethodHandlerRegistrationClosure.swift │ │ │ ├── IpcMethodHandlerRegistrationDependencies.swift │ │ │ ├── IpcMethodHandlerRegistrationTypeErasedClosure.swift │ │ │ └── IpcMethodHandlerWithDependenciesRegisterer.swift │ │ └── IpcStarter │ │ │ ├── Blackbox │ │ │ └── BuiltinIpcStarter.swift │ │ │ ├── Graybox │ │ │ ├── GrayBoxIpcStarter.swift │ │ │ └── SameProcessIpcClientServer.swift │ │ │ ├── IpcStarter.swift │ │ │ ├── IpcStarterProvider │ │ │ ├── FromEnvironmentIpcStarterProvider.swift │ │ │ └── IpcStarterProvider.swift │ │ │ ├── IpcStarterTypeProvider │ │ │ ├── FromEnvironmentIpcStarterTypeProvider.swift │ │ │ └── IpcStarterTypeProvider.swift │ │ │ ├── Sbtui │ │ │ └── SbtuiIpcStarter.swift │ │ │ └── StartedIpc.swift │ │ ├── SelfCheck │ │ └── EnsureReleaseAppIsNotAffected.swift │ │ ├── SimulatorStateInitializer │ │ ├── SimulatorStateInitializer.swift │ │ ├── SimulatorStateInitializerImpl.swift │ │ ├── TIPreferencesController.h │ │ ├── TIPreferencesControllerObjCWrapper │ │ │ ├── TIPreferencesControllerObjCWrapper.h │ │ │ └── TIPreferencesControllerObjCWrapper.m │ │ ├── TextInputFramework │ │ │ ├── TextInputFramework.swift │ │ │ └── TextInputFrameworkImpl.swift │ │ ├── TextInputFrameworkProvider │ │ │ ├── TextInputFrameworkProvider.swift │ │ │ └── TextInputFrameworkProviderImpl.swift │ │ └── TextInputPreferencesController │ │ │ ├── TextInputPreferencesController.swift │ │ │ └── TextInputPreferencesControllerImpl.swift │ │ └── Windows │ │ ├── ApplicationWindowsProvider.swift │ │ ├── UIApplication+StatusBarWindow.h │ │ └── UiApplicationWindowsProvider.swift ├── IoKit │ ├── README.md │ └── Sources │ │ ├── Events │ │ ├── ByType │ │ │ ├── BaseDigitizerEvent.swift │ │ │ ├── DigitizerEvent.swift │ │ │ ├── DigitizerFingerEvent.swift │ │ │ └── KeyboardEvent.swift │ │ ├── Event.swift │ │ └── Fields │ │ │ ├── EventFieldsByValueType.swift │ │ │ ├── EventFloatFields.swift │ │ │ ├── EventIntegerFields.swift │ │ │ └── EventPositionFields.swift │ │ ├── IOKitExtensions │ │ ├── EnumRawValues.h │ │ └── EnumRawValues.m │ │ ├── MBIohidEventSender │ │ ├── MBIohidEventSender.h │ │ └── MBIohidEventSender.mm │ │ ├── PrivateApi │ │ ├── CoreFoundation │ │ │ └── CFRuntime.h │ │ └── IOKit │ │ │ ├── IOCFPlugIn.h │ │ │ ├── IOKitKeys.h │ │ │ ├── IOKitLib.h │ │ │ ├── IOMessage.h │ │ │ ├── IOReturn.h │ │ │ ├── IOTypes.h │ │ │ ├── OSKext.h │ │ │ ├── OSMessageNotification.h │ │ │ ├── hid │ │ │ ├── IOHIDDisplay.h │ │ │ ├── IOHIDEvent.h │ │ │ ├── IOHIDEventData.h │ │ │ ├── IOHIDEventField.h │ │ │ ├── IOHIDEventQueue.h │ │ │ ├── IOHIDEventSystem.h │ │ │ ├── IOHIDEventSystemClient.h │ │ │ ├── IOHIDEventTypes.h │ │ │ ├── IOHIDNotification.h │ │ │ ├── IOHIDService.h │ │ │ ├── IOHIDSession.h │ │ │ └── IOHIDUserDevice.h │ │ │ ├── iokitmig.h │ │ │ ├── ps │ │ │ ├── IOPSKeys.h │ │ │ ├── IOPowerSources.h │ │ │ └── IOUPSPlugIn.h │ │ │ └── pwr_mgt │ │ │ ├── IOPM.h │ │ │ ├── IOPMKeys.h │ │ │ ├── IOPMLib.h │ │ │ └── IOPMLibDefs.h │ │ ├── SoftLinking │ │ └── SoftLinking.h │ │ ├── Syncronization │ │ ├── Observing │ │ │ ├── SingletonHandleHidEventObserver.swift │ │ │ ├── UiApplicationHandleIohidEventObservable.swift │ │ │ └── UiApplicationHandleIohidEventObserver.swift │ │ └── Swizzling │ │ │ ├── HandleHidEventSwizzler.swift │ │ │ └── HandleHidEventSwizzlerImpl.swift │ │ └── TypeWrappers │ │ ├── ButtonMask.swift │ │ ├── DigitizerEventMask.swift │ │ ├── DigitizerTransducerType.swift │ │ ├── EventOptionBits.swift │ │ └── EventType.swift ├── Ipc │ ├── README.md │ └── Sources │ │ ├── Client │ │ ├── IpcClient.swift │ │ ├── Logging │ │ │ └── PerformanceLoggingIpcClient.swift │ │ └── Synchronous │ │ │ ├── SynchronousIpcClient+CallOrThrow.swift │ │ │ ├── SynchronousIpcClient.swift │ │ │ └── SynchronousIpcClientFactory.swift │ │ ├── Model │ │ └── IpcVoid.swift │ │ └── Router │ │ ├── IpcMethod.swift │ │ ├── IpcMethodHandler.swift │ │ └── IpcRouter.swift ├── IpcCommon │ ├── README.md │ └── Sources │ │ ├── Features │ │ ├── AccessibilityEnchancement │ │ │ └── EnhancedAccessibilityLabel.swift │ │ ├── AssertionFailures │ │ │ ├── GetRecordedAssertionFailuresIpcMethod.swift │ │ │ └── RecordedAssertionFailure.swift │ │ ├── Info │ │ │ ├── GetUiScreenMainBoundsIpcMethod.swift │ │ │ └── GetUiScreenMainScaleIpcMethod.swift │ │ ├── Keyboard │ │ │ ├── Ipc │ │ │ │ └── InjectKeyboardEventsIpcMethod.swift │ │ │ ├── KeyboardEventInjector.swift │ │ │ └── Models │ │ │ │ └── KeyboardEvent.swift │ │ ├── LocationSimulation │ │ │ ├── SimulateLocationIpcMethod.swift │ │ │ └── StopLocationSimulationIpcMethod.swift │ │ ├── NetworkMocking │ │ │ ├── Methods │ │ │ │ ├── UrlProtocol │ │ │ │ │ ├── Class │ │ │ │ │ │ ├── UrlProtocolCanInitIpcMethod.swift │ │ │ │ │ │ ├── UrlProtocolCanonicalRequestIpcMethod.swift │ │ │ │ │ │ ├── UrlProtocolCreateInstanceIpcMethod.swift │ │ │ │ │ │ └── UrlProtocolRequestIsCacheEquivalentIpcMethod.swift │ │ │ │ │ ├── Instance │ │ │ │ │ │ ├── UrlProtocolStartLoadingIpcMethod.swift │ │ │ │ │ │ └── UrlProtocolStopLoadingIpcMethod.swift │ │ │ │ │ └── Registration │ │ │ │ │ │ ├── UrlProtocolRegisterBridgedUrlProtocolClassIpcMethod.swift │ │ │ │ │ │ └── UrlProtocolUnregisterBridgedUrlProtocolClassIpcMethod.swift │ │ │ │ └── UrlProtocolClient │ │ │ │ │ ├── UrlProtocolCachedResponseIsValidIpcMethod.swift │ │ │ │ │ ├── UrlProtocolDidFailWithErrorIpcMethod.swift │ │ │ │ │ ├── UrlProtocolDidFinishLoadingIpcMethod.swift │ │ │ │ │ ├── UrlProtocolDidLoadIpcMethod.swift │ │ │ │ │ ├── UrlProtocolDidReceiveIpcMethod.swift │ │ │ │ │ └── UrlProtocolWasRedirectedToIpcMethod.swift │ │ │ ├── Models │ │ │ │ ├── BridgedCachedUrlResponse.swift │ │ │ │ ├── BridgedUrlCacheStoragePolicy.swift │ │ │ │ ├── BridgedUrlRequest.swift │ │ │ │ ├── BridgedUrlRequestCachePolicy.swift │ │ │ │ ├── BridgedUrlRequestNetworkServiceType.swift │ │ │ │ ├── BridgedUrlResponse.swift │ │ │ │ └── URLResponseProtocolVariation.swift │ │ │ └── UrlProtocol │ │ │ │ ├── BridgedUrlProtocolClass.swift │ │ │ │ ├── BridgedUrlProtocolClassRepository │ │ │ │ ├── BridgedUrlProtocolClassForRequestProvider.swift │ │ │ │ ├── BridgedUrlProtocolClassRepository.swift │ │ │ │ └── CompoundBridgedUrlProtocolClass.swift │ │ │ │ ├── BridgedUrlProtocolClient.swift │ │ │ │ ├── BridgedUrlProtocolInstance.swift │ │ │ │ └── Registration │ │ │ │ ├── BridgedUrlProtocolRegisterer.swift │ │ │ │ └── RegisteredBridgedUrlProtocolClass.swift │ │ ├── OpenUrl │ │ │ └── OpenUrlIpcMethod.swift │ │ ├── PageObjectMakingHelper │ │ │ ├── AlertDisplayer │ │ │ │ ├── Alert.swift │ │ │ │ ├── AlertDisplayer.swift │ │ │ │ ├── DisplayAlertIpcMethod.swift │ │ │ │ └── SynchronousAlertDisplayer.swift │ │ │ └── PageObjectElementGenerationWizard │ │ │ │ ├── PageObjectElementGenerationWizardRunner.swift │ │ │ │ ├── RunPageObjectElementGenerationWizardIpcMethod.swift │ │ │ │ └── SynchronousPageObjectElementGenerationWizardRunner.swift │ │ ├── Pasteboard │ │ │ ├── GetPasteboardStringIpcMethod.swift │ │ │ └── SetPasteboardStringIpcMethod.swift │ │ ├── Scrolling │ │ │ ├── DraggingInstruction.swift │ │ │ ├── ScrollingHint.swift │ │ │ └── ScrollingHintIpcMethod.swift │ │ ├── UiEventObserving │ │ │ ├── Support │ │ │ │ └── BaseSetUiEventObserverEnabledIpcMethod.swift │ │ │ ├── TouchDrawer │ │ │ │ └── SetTouchDrawerEnabledIpcMethod.swift │ │ │ └── UiEventHistory │ │ │ │ ├── GetUiEventHistoryIpcMethod.swift │ │ │ │ ├── Models │ │ │ │ ├── UiEvent.swift │ │ │ │ ├── UiEventHistory.swift │ │ │ │ ├── UiEventHistoryRecord.swift │ │ │ │ └── UiTouch.swift │ │ │ │ └── SetUiEventHistoryTrackerEnabledIpcMethod.swift │ │ ├── ViewHierarchy │ │ │ ├── Codable │ │ │ │ ├── CodableViewHierarchy.swift │ │ │ │ └── CodableViewHierarchyElement.swift │ │ │ ├── Interface │ │ │ │ ├── ViewHierarchy.swift │ │ │ │ ├── ViewHierarchyElement.swift │ │ │ │ └── ViewHierarchyElementType.swift │ │ │ ├── ViewHierarchyIpcMethod.swift │ │ │ └── ViewHierarchyProvider.swift │ │ └── Visibility │ │ │ ├── CheckVisibilityIpcMethod.swift │ │ │ └── InteractionCoordinates.swift │ │ └── Support │ │ ├── IpcMethodsRegisterer │ │ └── IpcMethodHandlersRegisterer.swift │ │ ├── IpcObject │ │ ├── IpcObjectId.swift │ │ ├── IpcObjectIdentifiable.swift │ │ └── IpcObjectRepository │ │ │ ├── InsertedIpcObject │ │ │ ├── ClosureInsertedIpcObject.swift │ │ │ └── InsertedIpcObject.swift │ │ │ ├── IpcObjectRepository │ │ │ ├── IpcObjectRepository.swift │ │ │ └── IpcObjectRepositoryImpl.swift │ │ │ ├── ReadableIpcObjectRepository │ │ │ ├── ReadableIpcObjectRepository.swift │ │ │ └── ReadableIpcObjectRepositoryOf.swift │ │ │ └── WriteableIpcObjectRepository │ │ │ ├── WriteableIpcObjectRepository.swift │ │ │ └── WriteableIpcObjectRepositoryOf.swift │ │ ├── IpcStarter │ │ └── IpcStarterType.swift │ │ ├── IpcThrowingFunctionResult │ │ └── IpcThrowingFunctionResult.swift │ │ └── RunLoopSpinningSynchronousIpcClient │ │ ├── RunLoopSpinningSynchronousIpcClient.swift │ │ └── RunLoopSpinningSynchronousIpcClientFactory.swift ├── IpcSbtuiClient │ ├── README.md │ └── Sources │ │ └── SbtuiIpcClient.swift ├── IpcSbtuiHost │ ├── README.md │ └── Sources │ │ ├── SbtuiCustomCommand.swift │ │ └── SbtuiIpcRouter.swift ├── LinkXCTAutomationSupport │ └── Sources │ │ └── AutomationInfrastructureIntegrationTests.swift ├── MocksGeneration │ └── Sources │ │ ├── Sourcery │ │ └── Parsing │ │ │ ├── ModuleParser │ │ │ ├── Model │ │ │ │ ├── ParsedModule.swift │ │ │ │ └── ParsedModuleScope.swift │ │ │ ├── ModuleParser.swift │ │ │ └── ModuleParserImpl.swift │ │ │ └── SourceFileParser │ │ │ ├── Model │ │ │ └── ParsedSourceFile.swift │ │ │ ├── SourceFileParser.swift │ │ │ └── SourceFileParserImpl.swift │ │ ├── Templates │ │ ├── AllMocksTemplate.swift │ │ ├── BuilderTemplate │ │ │ ├── BuilderTemplate.swift │ │ │ └── NestedDeclarations │ │ │ │ ├── BuilderType.swift │ │ │ │ ├── CallClosureStubbingContinuation │ │ │ │ └── CallClosureStubbingContinuationTemplate.swift │ │ │ │ ├── FunctionBuilderTemplate.swift │ │ │ │ └── PropertyBuilderTemplate.swift │ │ ├── Implementation │ │ │ ├── NestedDeclarations │ │ │ │ ├── ProtocolImplementationFunctionTemplate.swift │ │ │ │ └── ProtocolImplementationPropertyTemplate.swift │ │ │ └── ProtocolImplementationTemplate.swift │ │ ├── MockTemplate.swift │ │ └── Utils │ │ │ └── Snippets.swift │ │ └── Utils │ │ ├── AttributeName.swift │ │ ├── Bool+ToOptional.swift │ │ ├── Collection+Render.swift │ │ ├── ErrorString.swift │ │ ├── Method+Generic.swift │ │ ├── MethodParameter+Escaping.swift │ │ ├── Models │ │ ├── GenericParameter.swift │ │ └── GenericParameterClause.swift │ │ ├── NameCollisionAvoidance.swift │ │ ├── Optional+ConvertEmpty.swift │ │ ├── Optional+Map.swift │ │ ├── String+Indent.swift │ │ ├── String+Regex.swift │ │ ├── Type+Extensions.swift │ │ └── TypeName │ │ ├── TypeName+Extensions.swift │ │ └── TypeName+TypeInstanceExpression.swift ├── MocksRuntime │ └── Sources │ │ ├── Builders │ │ ├── Stubbing │ │ │ ├── NestedDeclarations │ │ │ │ ├── Closures │ │ │ │ │ ├── CallClosureStubbingContinuation.swift │ │ │ │ │ └── StubbingFunctionWithClosureArgumentsBuilder.swift │ │ │ │ ├── StubbingFunctionBuilder.swift │ │ │ │ └── StubbingPropertyBuilder.swift │ │ │ └── StubbingBuilder.swift │ │ └── Verification │ │ │ ├── Matching │ │ │ ├── FunctionalMatcher.swift │ │ │ ├── MatcherArrayToRecordedCallArgumentsMatcher.swift │ │ │ ├── Matchers │ │ │ │ ├── MatcherToRecordedCallArgumentMatcher.swift │ │ │ │ └── NonEscapingClosureTypeToRecordedCallArgumentMatcher.swift │ │ │ ├── NonEscapingClosureMatcher.swift │ │ │ ├── RecordedCallArgumentsMatcherBuilder.swift │ │ │ └── TimesMethodWasCalled │ │ │ │ ├── TimesMethodWasCalledMatcher.swift │ │ │ │ └── TimesMethodWasCalledMatchingResult.swift │ │ │ ├── NestedDeclarations │ │ │ ├── VerificationFunctionBuilder.swift │ │ │ └── VerificationPropertyBuilder.swift │ │ │ ├── Result │ │ │ ├── VerificationFailureDescription.swift │ │ │ └── VerificationResult.swift │ │ │ └── VerifcationBuilder.swift │ │ ├── Manager │ │ ├── Configured │ │ │ └── ConfiguredMockManagerFactory.swift │ │ ├── Interfaces │ │ │ ├── MockManagerCalling.swift │ │ │ ├── MockManagerStateTransferring.swift │ │ │ ├── MockManagerStubbing.swift │ │ │ └── MockManagerVerification.swift │ │ ├── MockManager.swift │ │ ├── MockManagerFactory.swift │ │ ├── MockManagerImpl.swift │ │ ├── Shared │ │ │ ├── MockManagerCallingImpl.swift │ │ │ ├── MockManagerStateTransferringImpl.swift │ │ │ ├── MockManagerStubbingImpl.swift │ │ │ └── MockManagerVerificationImpl.swift │ │ ├── Support │ │ │ ├── DynamicCallable │ │ │ │ ├── DynamicCallable.swift │ │ │ │ ├── DynamicCallableResult.swift │ │ │ │ ├── Factory │ │ │ │ │ └── DynamicCallableFactory.swift │ │ │ │ └── Impls │ │ │ │ │ ├── AnyGeneratorDynamicCallable │ │ │ │ │ ├── AnyGeneratorDynamicCallable.swift │ │ │ │ │ ├── AnyGeneratorDynamicCallableFactory.swift │ │ │ │ │ └── Customization │ │ │ │ │ │ ├── DynamicCallableFunctionArgumentsHandler.swift │ │ │ │ │ │ ├── Impl │ │ │ │ │ │ └── CompletionHandlerCallingAnyGeneratorDynamicCallableBehavior.swift │ │ │ │ │ │ └── Model │ │ │ │ │ │ ├── AnyGeneratorDynamicCallableFunctionArgument.swift │ │ │ │ │ │ ├── Closure │ │ │ │ │ │ ├── AnyGeneratorDynamicCallableClosureArgument.swift │ │ │ │ │ │ └── AnyGeneratorDynamicCallableClosureArgumentImpl.swift │ │ │ │ │ │ └── NonClosure │ │ │ │ │ │ └── AnyGeneratorDynamicCallableNonClosureArgument.swift │ │ │ │ │ └── CanNotProvideResultDynamicCallable │ │ │ │ │ ├── CanNotProvideResultDynamicCallable.swift │ │ │ │ │ └── CanNotProvideResultDynamicCallableFactory.swift │ │ │ ├── RecordedCallsHolder │ │ │ │ ├── Models │ │ │ │ │ ├── Escaping │ │ │ │ │ │ ├── RecordedCall.swift │ │ │ │ │ │ ├── RecordedCallArgument.swift │ │ │ │ │ │ ├── RecordedCallArgumentValue.swift │ │ │ │ │ │ └── RecordedCallArguments.swift │ │ │ │ │ ├── Nonescaping │ │ │ │ │ │ ├── NonescapingCallArgument.swift │ │ │ │ │ │ ├── NonescapingCallArgumentValue.swift │ │ │ │ │ │ └── NonescapingCallArguments.swift │ │ │ │ │ └── Shared │ │ │ │ │ │ ├── Reflecting │ │ │ │ │ │ └── ClosureArgumentValueReflection.swift │ │ │ │ │ │ └── StoringValues │ │ │ │ │ │ ├── EscapingClosureArgumentValue.swift │ │ │ │ │ │ ├── NonEscapingClosureArgumentValue.swift │ │ │ │ │ │ ├── OptionalEscapingClosureArgumentValue.swift │ │ │ │ │ │ └── RegularArgumentValue.swift │ │ │ │ ├── RecordedCallsHolder.swift │ │ │ │ ├── RecordedCallsHolderImpl.swift │ │ │ │ ├── RecordedCallsProvider.swift │ │ │ │ └── TypeErasing │ │ │ │ │ ├── TypeErasedReturnValue.swift │ │ │ │ │ ├── TypeErasedTupledArguments.swift │ │ │ │ │ └── TypeErasedValue.swift │ │ │ ├── StubHolder │ │ │ │ ├── CallStub.swift │ │ │ │ ├── StubsHolder.swift │ │ │ │ ├── StubsHolderImpl.swift │ │ │ │ └── StubsProvider.swift │ │ │ └── TypeErasedAnyGeneratorSpecializationsBuilder.swift │ │ └── Unconfigured │ │ │ └── UnconfiguredMockManagerFactory.swift │ │ ├── Mock │ │ ├── BaseMock.swift │ │ ├── DefaultImplementationSettable.swift │ │ ├── Mock.swift │ │ ├── MockInfo.swift │ │ ├── MockInfoProvider.swift │ │ ├── MockManagerProvider.swift │ │ ├── MockManagerSettable.swift │ │ └── StorableMock.swift │ │ ├── Registration │ │ ├── MockRegisterer.swift │ │ ├── MockRegistererImpl.swift │ │ └── RegisterMocksSetUpAction.swift │ │ └── Utility │ │ ├── FunctionIdentifier.swift │ │ ├── MigrationFromCuckoo.swift │ │ ├── MixboxMocksRuntimeVoid.swift │ │ └── ThrowingFunctionResult.swift ├── Reflection │ └── Sources │ │ ├── CodeGeneration │ │ ├── ValueCodeGenerator.swift │ │ └── ValueCodeGeneratorImpl.swift │ │ ├── Utilities │ │ └── ValueIsObjectChecker.swift │ │ └── ValueReflection │ │ └── Immutable │ │ ├── ImmutableValueReflection.swift │ │ ├── ImmutableValueReflectionProvider │ │ ├── ImmutableValueReflectionProvider.swift │ │ └── ImmutableValueReflectionProviderImpl.swift │ │ ├── LabeledImmutableValueReflection.swift │ │ ├── ReflectableWithReflector.swift │ │ ├── Reflector │ │ ├── Reflector.swift │ │ └── ReflectorImpl.swift │ │ ├── Typed │ │ ├── Base │ │ │ ├── Collection │ │ │ │ └── BaseCollectionImmutableValueReflection.swift │ │ │ └── Fields │ │ │ │ ├── BaseImmutableValueReflectionWithFields.swift │ │ │ │ ├── ImmutableValueReflectionField.swift │ │ │ │ └── ImmutableValueReflectionWithFields.swift │ │ ├── Class │ │ │ └── ClassImmutableValueReflection.swift │ │ ├── Collection │ │ │ └── CollectionImmutableValueReflection.swift │ │ ├── Dictionary │ │ │ ├── DictionaryImmutableValueReflection.swift │ │ │ └── DictionaryImmutableValueReflectionPair.swift │ │ ├── Enum │ │ │ └── EnumImmutableValueReflection.swift │ │ ├── Optional │ │ │ └── OptionalImmutableValueReflection.swift │ │ ├── Primitive │ │ │ └── PrimitiveImmutableValueReflection.swift │ │ ├── Set │ │ │ └── SetImmutableValueReflection.swift │ │ ├── Struct │ │ │ └── StructImmutableValueReflection.swift │ │ └── Tuple │ │ │ ├── TupleImmutableValueReflection.swift │ │ │ └── TupleImmutableValueReflectionElement.swift │ │ └── TypedImmutableValueReflection.swift ├── SBTUITestTunnelClient │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── SBTUITunneledApplication.h │ │ └── SBTUITunneledApplication.m ├── SBTUITestTunnelCommon │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── NSString+SwiftDemangle.h │ │ ├── NSString+SwiftDemangle.m │ │ ├── NSURLRequest+HTTPBodyFix.h │ │ ├── NSURLRequest+HTTPBodyFix.m │ │ ├── NSURLRequest+SBTUITestTunnelMatch.h │ │ ├── NSURLRequest+SBTUITestTunnelMatch.m │ │ ├── SBTMonitoredNetworkRequest.h │ │ ├── SBTMonitoredNetworkRequest.m │ │ ├── SBTRequestMatch.h │ │ ├── SBTRequestMatch.m │ │ ├── SBTRewrite.h │ │ ├── SBTRewrite.m │ │ ├── SBTStubResponse.h │ │ ├── SBTStubResponse.m │ │ ├── SBTSwizzleHelpers.h │ │ ├── SBTUITestTunnel.h │ │ └── SBTUITestTunnel.m ├── SBTUITestTunnelServer │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── NSData+SHA1.h │ │ ├── NSData+SHA1.m │ │ ├── NSURLSession+HTTPBodyFix.h │ │ ├── NSURLSession+HTTPBodyFix.m │ │ ├── NSURLSessionConfiguration+SBTUITestTunnel.h │ │ ├── NSURLSessionConfiguration+SBTUITestTunnel.m │ │ ├── SBTProxyURLProtocol.h │ │ ├── SBTProxyURLProtocol.m │ │ ├── SBTUITestTunnelServer.h │ │ ├── SBTUITestTunnelServer.m │ │ ├── UITextField+DisableAutocomplete.h │ │ └── UITextField+DisableAutocomplete.m ├── Stubbing │ ├── README.md │ └── Sources │ │ ├── DI │ │ └── MixboxStubbingDependencies.swift │ │ └── Facade │ │ ├── GeneratorFacade │ │ ├── GeneratorFacade.swift │ │ └── GeneratorFacadeImpl.swift │ │ ├── TestFailingDynamicLookupGenerator │ │ ├── ConfiguredDynamicLookupGeneratorProvider │ │ │ ├── ConfiguredDynamicLookupGeneratorProvider.swift │ │ │ └── ConfiguredDynamicLookupGeneratorProviderImpl.swift │ │ ├── TestFailingDynamicLookupConfigurator.swift │ │ ├── TestFailingDynamicLookupConfiguratorWithIndex.swift │ │ └── TestFailingDynamicLookupFields.swift │ │ └── TestFailingGenerator │ │ ├── Facade │ │ ├── BaseTestFailingGenerator.swift │ │ ├── BaseTestFailingGenerator │ │ │ ├── BaseTestFailingGeneratorDependencies.swift │ │ │ └── BaseTestFailingGeneratorDependenciesFactory │ │ │ │ ├── BaseTestFailingGeneratorDependenciesFactory.swift │ │ │ │ └── BaseTestFailingGeneratorDependenciesFactoryImpl.swift │ │ └── TestFailingGenerator.swift │ │ ├── Helpers │ │ ├── TestFailingObjectGeneratorWithConfiguratorModification.swift │ │ └── TestFailingObjectGeneratorWithConfiguratorModificationImpl.swift │ │ ├── Observer │ │ ├── NoopTestFailingGeneratorObserver.swift │ │ └── TestFailingGeneratorObserver.swift │ │ └── Parts │ │ ├── TestFailingAnyGenerator │ │ ├── TestFailingAnyGenerator.swift │ │ └── TestFailingAnyGeneratorImpl.swift │ │ ├── TestFailingArrayGenerator │ │ ├── TestFailingArrayGenerator.swift │ │ └── TestFailingArrayGeneratorImpl.swift │ │ ├── TestFailingDictionaryGenerator │ │ ├── TestFailingDictionaryGenerator.swift │ │ └── TestFailingDictionaryGeneratorImpl.swift │ │ ├── TestFailingObjectGenerator │ │ ├── TestFailingObjectGenerator.swift │ │ └── TestFailingObjectGeneratorImpl.swift │ │ └── TestFailingOptionalGenerator │ │ ├── TestFailingOptionalGenerator.swift │ │ └── TestFailingOptionalGeneratorImpl.swift ├── Testability │ ├── README.md │ └── Sources │ │ ├── CommonValues │ │ ├── Extensions │ │ │ ├── UIAccessibilityElementExtensions │ │ │ │ ├── UIAccessibilityElement+mb_testability_accessibilityLabel.swift │ │ │ │ ├── UIAccessibilityElement+mb_testability_accessibilityValue.swift │ │ │ │ ├── UIAccessibilityElement+mb_testability_frame.swift │ │ │ │ ├── UIAccessibilityElement+mb_testability_frameRelativeToScreen.swift │ │ │ │ └── UIAccessibilityElement+mb_testability_parent.swift │ │ │ └── UIViewExtensions │ │ │ │ ├── UIView+mb_testability_accessibilityIdentifier.swift │ │ │ │ ├── UIView+mb_testability_accessibilityPlaceholderValue.swift │ │ │ │ ├── UIView+mb_testability_children.swift │ │ │ │ ├── UIView+mb_testability_elementType.swift │ │ │ │ ├── UIView+mb_testability_frame.swift │ │ │ │ ├── UIView+mb_testability_frameRelativeToScreen.swift │ │ │ │ ├── UIView+mb_testability_hasKeyboardFocus.swift │ │ │ │ ├── UIView+mb_testability_isDefinitelyHidden.swift │ │ │ │ ├── UIView+mb_testability_isEnabled.swift │ │ │ │ ├── UIView+mb_testability_parent.swift │ │ │ │ ├── UIView+mb_testability_text.swift │ │ │ │ └── UIWebView │ │ │ │ ├── UIWebView+mb_testability_elementType.h │ │ │ │ └── UIWebView+mb_testability_elementType.m │ │ ├── Implementations │ │ │ ├── BaseMutableTestabilityElement.swift │ │ │ ├── BaseTestabilityElement.swift │ │ │ ├── DtoTestabilityElement.swift │ │ │ └── NonTestabilityElementFallbackTestabilityElement.swift │ │ ├── Interface │ │ │ ├── TestabilityElement.h │ │ │ └── TestabilityElementType.h │ │ └── Support │ │ │ ├── ObjectiveC │ │ │ ├── NSObject+AccessibilityPrivateApi.h │ │ │ ├── NSObject+TestabilityElement.h │ │ │ └── NSObject+TestabilityElement.m │ │ │ └── Swift │ │ │ ├── DefaultTestabilityElementValues.swift │ │ │ ├── NSObject+TestabilityElement.swift │ │ │ ├── NSObjectTestabilityElementSwiftImplementation.swift │ │ │ └── TestabilityElementFromAnyConverter.swift │ │ ├── CustomValues │ │ ├── GenericSerialization.swift │ │ ├── TestabilityCustomValues.swift │ │ ├── TestabilityElement+TestabilityCustomValues.swift │ │ └── View+CustomValues.swift │ │ ├── FakeCells │ │ ├── FakeCellInfo.swift │ │ ├── FakeCellManager │ │ │ ├── DisabledFakeCellManager.swift │ │ │ ├── FakeCellManager.swift │ │ │ ├── FakeCellManagerForCollectionView.swift │ │ │ ├── FakeCellManagerForCollectionViewCell.swift │ │ │ ├── FakeCellManagerProvider.swift │ │ │ └── MixboxCollectionViewUpdatesActivity.swift │ │ ├── ObjCInterfacesForFakeCells.h │ │ ├── UICollectionViewCell+Fakeness.swift │ │ └── UICollectionViewCell+Testability.swift │ │ └── Support │ │ ├── MixboxTestability.h │ │ └── WeakBox.swift ├── TestsFoundation │ ├── README.md │ └── Sources │ │ ├── Di │ │ ├── DependencyCollectionRegisterer │ │ │ └── ApplicationIndependentTestsDependencyCollectionRegisterer.swift │ │ ├── DependencyResolver │ │ │ └── PerformanceLoggingDependencyResolver.swift │ │ ├── Facade │ │ │ ├── TestCaseDi.swift │ │ │ └── TopLevelDependencyCollectionRegisterer.swift │ │ └── TestFailingDependencyResolver │ │ │ ├── MixboxDiTestFailingDependencyResolver.swift │ │ │ └── TestFailingDependencyResolver.swift │ │ ├── Interfaces │ │ ├── BundleResourcePathProvider.swift │ │ └── BundleResourcePathProviderImpl.swift │ │ ├── Lifecycle │ │ ├── Integration │ │ │ └── BaseTestObservationEntryPoint.swift │ │ ├── LifecycleManager │ │ │ └── TestLifecycleManager.swift │ │ ├── Observer │ │ │ ├── Observable │ │ │ │ ├── Support │ │ │ │ │ ├── TestLifecycleObservers │ │ │ │ │ │ ├── DtoTestLifecycleObservers.swift │ │ │ │ │ │ └── TestLifecycleObservers.swift │ │ │ │ │ └── TestObservation │ │ │ │ │ │ └── TestLifecycleObserverTestObservation.swift │ │ │ │ ├── TestLifecycleObservable.swift │ │ │ │ └── TestLifecycleObservableImpl.swift │ │ │ └── Observers │ │ │ │ ├── MutableClosures │ │ │ │ ├── MutableClosuresTestLifecycleTestBundleObserver.swift │ │ │ │ ├── MutableClosuresTestLifecycleTestCaseObserver.swift │ │ │ │ └── MutableClosuresTestLifecycleTestSuiteObserver.swift │ │ │ │ ├── MutableCompond │ │ │ │ ├── MutableCompoundTestLifecycleTestBundleObserver.swift │ │ │ │ ├── MutableCompoundTestLifecycleTestCaseObserver.swift │ │ │ │ └── MutableCompoundTestLifecycleTestSuiteObserver.swift │ │ │ │ ├── TestLifecycleTestBundleObserver.swift │ │ │ │ ├── TestLifecycleTestCaseObserver.swift │ │ │ │ └── TestLifecycleTestSuiteObserver.swift │ │ └── SetUpAndTearDown │ │ │ ├── Compound │ │ │ ├── CompoundSetUpAction.swift │ │ │ └── CompoundTearDownAction.swift │ │ │ ├── Noop │ │ │ └── NoopTearDownAction.swift │ │ │ ├── SetUpAction.swift │ │ │ └── TearDownAction.swift │ │ ├── Matching │ │ ├── MatcherBuilders │ │ │ ├── Array │ │ │ │ └── ArrayPropertyMatcherBuilder.swift │ │ │ ├── Dynamic │ │ │ │ ├── AllNamedKeyPathsProvider.swift │ │ │ │ ├── DynamicMatcherBuilder.swift │ │ │ │ ├── DynamicPropertyMatcherBuilder.swift │ │ │ │ └── NamedKeyPaths.swift │ │ │ └── Mapping │ │ │ │ ├── Extensions │ │ │ │ ├── MappingMatcherBuilder+Comparable.swift │ │ │ │ ├── MappingMatcherBuilder+ComparableAndAdditiveArithmetic.swift │ │ │ │ ├── MappingMatcherBuilder+Equatable.swift │ │ │ │ └── MappingMatcherBuilder+StringProtocol.swift │ │ │ │ ├── Impl │ │ │ │ └── MappingMatcherBuilderImpl.swift │ │ │ │ ├── MappingMatcherBuilder.swift │ │ │ │ └── Subclasses │ │ │ │ └── PropertyMatcherBuilder.swift │ │ └── Matchers │ │ │ ├── Impls │ │ │ ├── Array │ │ │ │ ├── ArrayContainsElementMatcher.swift │ │ │ │ └── ArrayEqualsMatcher.swift │ │ │ ├── Generic │ │ │ │ ├── Base │ │ │ │ │ ├── CompoundMatcher.swift │ │ │ │ │ └── HasPropertyMatcher.swift │ │ │ │ ├── Logic │ │ │ │ │ ├── AlwaysFalseMatcher.swift │ │ │ │ │ ├── AlwaysTrueMatcher.swift │ │ │ │ │ ├── AndMatcher.swift │ │ │ │ │ ├── NotMatcher.swift │ │ │ │ │ └── OrMatcher.swift │ │ │ │ ├── Structure │ │ │ │ │ ├── CastMatcher.swift │ │ │ │ │ └── OptionalMatcher.swift │ │ │ │ ├── Support │ │ │ │ │ ├── AbsoluteValueProvider.swift │ │ │ │ │ ├── Divisible.swift │ │ │ │ │ ├── DoubleValueProvider.swift │ │ │ │ │ └── Subtractable.swift │ │ │ │ └── Value │ │ │ │ │ ├── Comparable │ │ │ │ │ ├── Base │ │ │ │ │ │ ├── BaseComparableMatcher.swift │ │ │ │ │ │ ├── BaseComparableWithAccuracyMatcher.swift │ │ │ │ │ │ └── ComparisonOperatorInfo.swift │ │ │ │ │ ├── Exact │ │ │ │ │ │ ├── IsGreaterMatcher.swift │ │ │ │ │ │ ├── IsGreaterOrEqualsMatcher.swift │ │ │ │ │ │ ├── IsLessMatcher.swift │ │ │ │ │ │ └── IsLessOrEqualsMatcher.swift │ │ │ │ │ └── WithAccuracy │ │ │ │ │ │ ├── IsGreaterOrEqualsWithAccuracyMatcher.swift │ │ │ │ │ │ ├── IsGreaterWithAccuracyMatcher.swift │ │ │ │ │ │ ├── IsLessOrEqualsWithAccuracyMatcher.swift │ │ │ │ │ │ └── IsLessWithAccuracyMatcher.swift │ │ │ │ │ ├── EqualsMatcher.swift │ │ │ │ │ ├── IsCloseMatcher.swift │ │ │ │ │ ├── IsInstanceOfTypeMatcher.swift │ │ │ │ │ └── IsSameInstanceMatcher.swift │ │ │ └── String │ │ │ │ ├── ContainsMatcher.swift │ │ │ │ ├── RegularExpressionMatcher.swift │ │ │ │ └── StartsWithMatcher.swift │ │ │ ├── Matcher.swift │ │ │ ├── Models │ │ │ ├── LazyMismatchResult.swift │ │ │ ├── MatchingResult.swift │ │ │ └── MismatchResult.swift │ │ │ └── Operators │ │ │ └── Matcher+Operators.swift │ │ ├── Network │ │ ├── IpcBridgedUrlProtocolClient.swift │ │ ├── IpcRouterProvider.swift │ │ ├── MethodHandlers │ │ │ ├── IpcMethodHandlersRegisterer.swift │ │ │ ├── UrlProtocolClass │ │ │ │ ├── UrlProtocolCanInitIpcMethodHandler.swift │ │ │ │ ├── UrlProtocolCanonicalRequestIpcMethodHandler.swift │ │ │ │ ├── UrlProtocolCreateInstanceIpcMethodHandler.swift │ │ │ │ └── UrlProtocolRequestIsCacheEquivalentIpcMethodHandler.swift │ │ │ └── UrlProtocolInstance │ │ │ │ ├── UrlProtocolStartLoadingIpcMethodHandler.swift │ │ │ │ └── UrlProtocolStopLoadingIpcMethodHandler.swift │ │ ├── Mocking │ │ │ ├── AddedUrlProtocolStub │ │ │ │ ├── AddedUrlProtocolStub.swift │ │ │ │ └── ClosureAddedUrlProtocolStub.swift │ │ │ ├── Registration │ │ │ │ ├── IpcBridgedUrlProtocolRegisterer.swift │ │ │ │ └── IpcRegisteredBridgedUrlProtocolClass.swift │ │ │ ├── RequestMatcher.swift │ │ │ └── UrlProtocolStubAdder │ │ │ │ ├── UrlProtocolStubAdder.swift │ │ │ │ └── UrlProtocolStubAdderImpl.swift │ │ └── README.md │ │ ├── PrivateHeaders │ │ ├── Classdump │ │ │ ├── XCTAutomationSupport │ │ │ │ ├── Xcode_12_0 │ │ │ │ │ ├── Xcode_12_0_XCElementSnapshot.h │ │ │ │ │ └── Xcode_12_0_XCTAutomationSupport_CDStructures.h │ │ │ │ ├── Xcode_13_0 │ │ │ │ │ ├── Xcode_13_0_XCElementSnapshot.h │ │ │ │ │ └── Xcode_13_0_XCTAutomationSupport_CDStructures.h │ │ │ │ ├── Xcode_14_0 │ │ │ │ │ ├── Xcode_14_0_XCElementSnapshot.h │ │ │ │ │ └── Xcode_14_0_XCTAutomationSupport_CDStructures.h │ │ │ │ └── Xcode_15_0 │ │ │ │ │ ├── Xcode_15_0_NSArray-XCTElementQueryAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSError-XCTAutomationSupportErrors.h │ │ │ │ │ ├── Xcode_15_0_NSIndexPath-XCTConvenience.h │ │ │ │ │ ├── Xcode_15_0_NSPredicate-XCTAutomationSupport.h │ │ │ │ │ ├── Xcode_15_0_NSString-XCTASAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSValue-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_XCAXAuditConfiguration.h │ │ │ │ │ ├── Xcode_15_0_XCAXAuditResult.h │ │ │ │ │ ├── Xcode_15_0_XCAXAuditResultCollection.h │ │ │ │ │ ├── Xcode_15_0_XCAXCycleDetector.h │ │ │ │ │ ├── Xcode_15_0_XCAccessibilityElement.h │ │ │ │ │ ├── Xcode_15_0_XCDeviceEvent.h │ │ │ │ │ ├── Xcode_15_0_XCElementSnapshot.h │ │ │ │ │ ├── Xcode_15_0_XCTAccessibilityFramework.h │ │ │ │ │ ├── Xcode_15_0_XCTAccessibilitySnapshot_iOS.h │ │ │ │ │ ├── Xcode_15_0_XCTAnimationsIdleNotifier.h │ │ │ │ │ ├── Xcode_15_0_XCTApplicationStateSnapshot.h │ │ │ │ │ ├── Xcode_15_0_XCTAttachmentFutureMetadata.h │ │ │ │ │ ├── Xcode_15_0_XCTAutomationSession.h │ │ │ │ │ ├── Xcode_15_0_XCTAutomationSupport_CDStructures.h │ │ │ │ │ ├── Xcode_15_0_XCTAutomationTypeMismatchIssue.h │ │ │ │ │ ├── Xcode_15_0_XCTCapabilitiesProviding.h │ │ │ │ │ ├── Xcode_15_0_XCTConnectionAccepting.h │ │ │ │ │ ├── Xcode_15_0_XCTContainingTransformerIterator.h │ │ │ │ │ ├── Xcode_15_0_XCTElementBlockFilteringTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementBlockSortingTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementContainingTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementDisclosedChildRowsTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementFilteringTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementIndexingTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementQuery.h │ │ │ │ │ ├── Xcode_15_0_XCTElementQueryProcessor.h │ │ │ │ │ ├── Xcode_15_0_XCTElementQueryResults.h │ │ │ │ │ ├── Xcode_15_0_XCTElementQueryTransformerPredicateValidator.h │ │ │ │ │ ├── Xcode_15_0_XCTElementSetCodableTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementSetTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTElementSnapshotAttributeDataSource.h │ │ │ │ │ ├── Xcode_15_0_XCTElementSnapshotDescendantsEnumerator.h │ │ │ │ │ ├── Xcode_15_0_XCTElementSnapshotProvider.h │ │ │ │ │ ├── Xcode_15_0_XCTElementSnapshotRequest.h │ │ │ │ │ ├── Xcode_15_0_XCTElementSortingTransformer.h │ │ │ │ │ ├── Xcode_15_0_XCTFilteringTransformerIterator.h │ │ │ │ │ ├── Xcode_15_0_XCTImage.h │ │ │ │ │ ├── Xcode_15_0_XCTImageConverter.h │ │ │ │ │ ├── Xcode_15_0_XCTImageEncoding.h │ │ │ │ │ ├── Xcode_15_0_XCTImageMetadata.h │ │ │ │ │ ├── Xcode_15_0_XCTIndexingTransformerIterator.h │ │ │ │ │ ├── Xcode_15_0_XCTLocalizableStringInfo.h │ │ │ │ │ ├── Xcode_15_0_XCTLogArchiveCollecting.h │ │ │ │ │ ├── Xcode_15_0_XCTLogArchiveRequest.h │ │ │ │ │ ├── Xcode_15_0_XCTLogArchiveRequesting.h │ │ │ │ │ ├── Xcode_15_0_XCTMacCatalystStatusProviding.h │ │ │ │ │ ├── Xcode_15_0_XCTMainRunLoopIdleNotifier.h │ │ │ │ │ ├── Xcode_15_0_XCTMatchingElementIterator.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_RunnerToUIProcess.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_UIProcessToRunner.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_UIAutomationProcess.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_UIAutomationProcessObserving.h │ │ │ │ │ ├── Xcode_15_0_XCTProcessInfoUtilities.h │ │ │ │ │ ├── Xcode_15_0_XCTProcessSpecifier.h │ │ │ │ │ ├── Xcode_15_0_XCTRemoteApplicationAutomationClient.h │ │ │ │ │ ├── Xcode_15_0_XCTRemoteApplicationAutomationTarget.h │ │ │ │ │ ├── Xcode_15_0_XCTRuntimeIssue.h │ │ │ │ │ ├── Xcode_15_0_XCTRuntimeIssueContext.h │ │ │ │ │ ├── Xcode_15_0_XCTRuntimeIssueContextReportingDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTScreenRecordingRequest.h │ │ │ │ │ ├── Xcode_15_0_XCTScreenshotRequest.h │ │ │ │ │ ├── Xcode_15_0_XCTSerializedTransportWrapper2.h │ │ │ │ │ ├── Xcode_15_0_XCTSignpostEvent.h │ │ │ │ │ ├── Xcode_15_0_XCTSignpostInterval.h │ │ │ │ │ ├── Xcode_15_0_XCTSpindumpRequestSpecification.h │ │ │ │ │ ├── Xcode_15_0_XCTTailspinRequest.h │ │ │ │ │ ├── Xcode_15_0_XCTTimeoutControls.h │ │ │ │ │ ├── Xcode_15_0_XCTVideoEncoding.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementSnapshotCoordinateTransforms.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementSnapshotRequestResult.h │ │ │ │ │ ├── Xcode_15_0_XCUIPoint.h │ │ │ │ │ ├── Xcode_15_0_XCUIRect.h │ │ │ │ │ └── Xcode_15_0__XCTMessaging_VoidProtocol.h │ │ │ ├── XCTest │ │ │ │ ├── Xcode_12_0 │ │ │ │ │ ├── Xcode_12_0_XCPointerEventPath.h │ │ │ │ │ ├── Xcode_12_0_XCSynthesizedEventRecord.h │ │ │ │ │ ├── Xcode_12_0_XCTInProcessSymbolicationService.h │ │ │ │ │ ├── Xcode_12_0_XCTIssueHandling.h │ │ │ │ │ ├── Xcode_12_0_XCTNSPredicateExpectationObject.h │ │ │ │ │ ├── Xcode_12_0_XCTSourceCodeSymbolInfo.h │ │ │ │ │ ├── Xcode_12_0_XCTSymbolInfoProviding.h │ │ │ │ │ ├── Xcode_12_0_XCTSymbolicationService.h │ │ │ │ │ ├── Xcode_12_0_XCTestCase.h │ │ │ │ │ ├── Xcode_12_0_XCTestMisuseObserver.h │ │ │ │ │ ├── Xcode_12_0_XCTestObservationCenter.h │ │ │ │ │ ├── Xcode_12_0_XCTest_CDStructures.h │ │ │ │ │ ├── Xcode_12_0_XCUIApplication.h │ │ │ │ │ ├── Xcode_12_0_XCUIElement.h │ │ │ │ │ ├── Xcode_12_0_XCUIElementAttributesPrivate.h │ │ │ │ │ └── Xcode_12_0_XCUIElementTypeQueryProvider_Private.h │ │ │ │ ├── Xcode_14_0 │ │ │ │ │ └── Xcode_14_0_XCTest_CDStructures.h │ │ │ │ └── Xcode_15_0 │ │ │ │ │ └── Xcode_15_0_XCTest_CDStructures.h │ │ │ ├── XCTestCore │ │ │ │ ├── Xcode_13_0 │ │ │ │ │ ├── Xcode_13_0_XCPointerEventPath.h │ │ │ │ │ ├── Xcode_13_0_XCSynthesizedEventRecord.h │ │ │ │ │ ├── Xcode_13_0_XCTInProcessSymbolicationService.h │ │ │ │ │ ├── Xcode_13_0_XCTNSPredicateExpectationObject.h │ │ │ │ │ ├── Xcode_13_0_XCTSourceCodeSymbolInfo.h │ │ │ │ │ ├── Xcode_13_0_XCTSymbolInfoProviding.h │ │ │ │ │ ├── Xcode_13_0_XCTSymbolicationService.h │ │ │ │ │ ├── Xcode_13_0_XCTestCase.h │ │ │ │ │ ├── Xcode_13_0_XCTestCore_CDStructures.h │ │ │ │ │ ├── Xcode_13_0_XCTestMisuseObserver.h │ │ │ │ │ ├── Xcode_13_0_XCTestObservationCenter.h │ │ │ │ │ ├── Xcode_13_0_XCUIApplication.h │ │ │ │ │ ├── Xcode_13_0_XCUIElement.h │ │ │ │ │ ├── Xcode_13_0_XCUIElementAttributesPrivate.h │ │ │ │ │ └── Xcode_13_0_XCUIElementTypeQueryProvider_Private.h │ │ │ │ ├── Xcode_14_0 │ │ │ │ │ ├── Xcode_14_0_XCTInProcessSymbolicationService.h │ │ │ │ │ ├── Xcode_14_0_XCTSourceCodeSymbolInfo.h │ │ │ │ │ ├── Xcode_14_0_XCTSymbolInfoProviding.h │ │ │ │ │ ├── Xcode_14_0_XCTSymbolicationService.h │ │ │ │ │ ├── Xcode_14_0_XCTestCase.h │ │ │ │ │ ├── Xcode_14_0_XCTestCaseDiscoveryUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCTestCaseUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCTestCastMethodNamesUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCTestCore_CDStructures.h │ │ │ │ │ ├── Xcode_14_0_XCTestMisuseObserver.h │ │ │ │ │ └── Xcode_14_0_XCTestObservationCenter.h │ │ │ │ └── Xcode_15_0 │ │ │ │ │ ├── Xcode_15_0_DTXConnection-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_DTXProxyChannel-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_MXMInstrumental.h │ │ │ │ │ ├── Xcode_15_0_NSArray-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSBundle-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSDateFormatter-XCTDateFormatting.h │ │ │ │ │ ├── Xcode_15_0_NSError-XCTTestRunSession.h │ │ │ │ │ ├── Xcode_15_0_NSException-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSKeyedArchiver-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSKeyedUnarchiver-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSMutableArray-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSSet-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSThread-XCTestAdditions.h │ │ │ │ │ ├── Xcode_15_0_NSValue-XCTSymbolicationServiceAdditions.h │ │ │ │ │ ├── Xcode_15_0_XCActivityRecord.h │ │ │ │ │ ├── Xcode_15_0_XCDebugLogDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTASDebugLogDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTActivityAggregationRecord.h │ │ │ │ │ ├── Xcode_15_0_XCTActivityRecordContext.h │ │ │ │ │ ├── Xcode_15_0_XCTActivityRecordStack.h │ │ │ │ │ ├── Xcode_15_0_XCTAggregateSuiteRunStatistics.h │ │ │ │ │ ├── Xcode_15_0_XCTAggregateSuiteRunStatisticsRecord.h │ │ │ │ │ ├── Xcode_15_0_XCTApplicationBundleInfo.h │ │ │ │ │ ├── Xcode_15_0_XCTApplicationLaunchMetric.h │ │ │ │ │ ├── Xcode_15_0_XCTAttachment.h │ │ │ │ │ ├── Xcode_15_0_XCTAttachmentFuture.h │ │ │ │ │ ├── Xcode_15_0_XCTAttachmentManager.h │ │ │ │ │ ├── Xcode_15_0_XCTBlockingQueue.h │ │ │ │ │ ├── Xcode_15_0_XCTCPUMetric.h │ │ │ │ │ ├── Xcode_15_0_XCTClockMetric.h │ │ │ │ │ ├── Xcode_15_0_XCTCompoundExpectation.h │ │ │ │ │ ├── Xcode_15_0_XCTContext.h │ │ │ │ │ ├── Xcode_15_0_XCTDaemonTelemetryLogger.h │ │ │ │ │ ├── Xcode_15_0_XCTDarwinNotificationExpectation.h │ │ │ │ │ ├── Xcode_15_0_XCTDateDescriptionFormatter.h │ │ │ │ │ ├── Xcode_15_0_XCTDateFormatting.h │ │ │ │ │ ├── Xcode_15_0_XCTDefaultDebugLogHandler.h │ │ │ │ │ ├── Xcode_15_0_XCTExecutionExtension.h │ │ │ │ │ ├── Xcode_15_0_XCTExecutionWorker.h │ │ │ │ │ ├── Xcode_15_0_XCTExpectedFailure.h │ │ │ │ │ ├── Xcode_15_0_XCTExpectedFailureContext.h │ │ │ │ │ ├── Xcode_15_0_XCTExpectedFailureContextManager.h │ │ │ │ │ ├── Xcode_15_0_XCTExtensionProvider.h │ │ │ │ │ ├── Xcode_15_0_XCTFailableInvocation.h │ │ │ │ │ ├── Xcode_15_0_XCTFixedPriorityTestScheduler.h │ │ │ │ │ ├── Xcode_15_0_XCTFuture.h │ │ │ │ │ ├── Xcode_15_0_XCTHarnessEventReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTImageEncoding-XCTImageQuality.h │ │ │ │ │ ├── Xcode_15_0_XCTInProcessSymbolicationService.h │ │ │ │ │ ├── Xcode_15_0_XCTIssue.h │ │ │ │ │ ├── Xcode_15_0_XCTIssueHandling.h │ │ │ │ │ ├── Xcode_15_0_XCTKVOExpectation.h │ │ │ │ │ ├── Xcode_15_0_XCTMeasureOptions.h │ │ │ │ │ ├── Xcode_15_0_XCTMeasurement.h │ │ │ │ │ ├── Xcode_15_0_XCTMemgraph.h │ │ │ │ │ ├── Xcode_15_0_XCTMemoryMetric.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_DaemonRecorderToIDE.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_DaemonToIDE.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_DaemonToIDE_All.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_DaemonToRunner.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_IDEToDaemon.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_IDEToRunner.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_RunnerToDaemon.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingChannel_RunnerToIDE.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_AccessibilityNotificationReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_ActivityReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_AttachmentFinalizing.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_AttachmentFutureResultStatusUpdating.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_AttachmentsDeleting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_BundleRequesting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_CapabilityExchange.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_ControlSessionInitiation.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_CrashReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_DebugLogging.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_DiagnosticsCollection.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_EventSynthesis.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_ForcePressureSupportQuerying.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_HIDEventRecording.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_MemoryTesting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_PerformanceMeasurementReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_ProcessMonitoring.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_ProtectedResourceAuthorization.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_RunnerSessionInitiation.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_ScreenRecording.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_SelfDiagnosisIssueReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_SignpostReceiving.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_SignpostRequesting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_SiriAutomation.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_SystemConfiguration.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_TestExecution.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_TestReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_UIApplicationStateUpdating.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_UIAutomation.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_UIAutomationEventReporting.h │ │ │ │ │ ├── Xcode_15_0_XCTMessagingRole_UIRecordingControl.h │ │ │ │ │ ├── Xcode_15_0_XCTMetricDiagnosticHelper.h │ │ │ │ │ ├── Xcode_15_0_XCTMetricHelper.h │ │ │ │ │ ├── Xcode_15_0_XCTMetricInstrumentalAdapter.h │ │ │ │ │ ├── Xcode_15_0_XCTMetric_Private.h │ │ │ │ │ ├── Xcode_15_0_XCTMutableIssue.h │ │ │ │ │ ├── Xcode_15_0_XCTNSNotificationExpectation.h │ │ │ │ │ ├── Xcode_15_0_XCTNSPredicateExpectation.h │ │ │ │ │ ├── Xcode_15_0_XCTOSSignpostMetric.h │ │ │ │ │ ├── Xcode_15_0_XCTOutOfProcessSymbolicationService.h │ │ │ │ │ ├── Xcode_15_0_XCTPerformanceMeasurementTimestamp.h │ │ │ │ │ ├── Xcode_15_0_XCTPromise.h │ │ │ │ │ ├── Xcode_15_0_XCTRemoteSignpostListenerProxy.h │ │ │ │ │ ├── Xcode_15_0_XCTRepetitionPolicy.h │ │ │ │ │ ├── Xcode_15_0_XCTReportingSession.h │ │ │ │ │ ├── Xcode_15_0_XCTReportingSessionActivityReporter.h │ │ │ │ │ ├── Xcode_15_0_XCTReportingSessionConfiguration.h │ │ │ │ │ ├── Xcode_15_0_XCTReportingSessionSuiteReporter.h │ │ │ │ │ ├── Xcode_15_0_XCTReportingSessionTestReporter.h │ │ │ │ │ ├── Xcode_15_0_XCTResult.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerDaemonSession.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerDaemonSessionUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerIDESession.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerIDESessionDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTRuntimeIssueDetectionManager.h │ │ │ │ │ ├── Xcode_15_0_XCTRuntimeIssueDetectionPolicy.h │ │ │ │ │ ├── Xcode_15_0_XCTScreenCapturePolicy.h │ │ │ │ │ ├── Xcode_15_0_XCTSerializedTransportWrapper.h │ │ │ │ │ ├── Xcode_15_0_XCTSignpostListener.h │ │ │ │ │ ├── Xcode_15_0_XCTSkippedTestContext.h │ │ │ │ │ ├── Xcode_15_0_XCTSourceCodeContext.h │ │ │ │ │ ├── Xcode_15_0_XCTSourceCodeFrame.h │ │ │ │ │ ├── Xcode_15_0_XCTSourceCodeLocation.h │ │ │ │ │ ├── Xcode_15_0_XCTSourceCodeSymbolInfo.h │ │ │ │ │ ├── Xcode_15_0_XCTStorageMetric.h │ │ │ │ │ ├── Xcode_15_0_XCTSwiftErrorObservation.h │ │ │ │ │ ├── Xcode_15_0_XCTSwiftErrorObservation_Overlay.h │ │ │ │ │ ├── Xcode_15_0_XCTSymbolInfoProviding.h │ │ │ │ │ ├── Xcode_15_0_XCTSymbolicationService.h │ │ │ │ │ ├── Xcode_15_0_XCTTelemetryLogger.h │ │ │ │ │ ├── Xcode_15_0_XCTTelemetryLogging.h │ │ │ │ │ ├── Xcode_15_0_XCTTelemetryObserver.h │ │ │ │ │ ├── Xcode_15_0_XCTTestIdentifier.h │ │ │ │ │ ├── Xcode_15_0_XCTTestIdentifierSet.h │ │ │ │ │ ├── Xcode_15_0_XCTTestIdentifierSetBuilder.h │ │ │ │ │ ├── Xcode_15_0_XCTTestInvocationDescriptor.h │ │ │ │ │ ├── Xcode_15_0_XCTTestRunSession.h │ │ │ │ │ ├── Xcode_15_0_XCTTestRunSessionProvider.h │ │ │ │ │ ├── Xcode_15_0_XCTTestScheduler.h │ │ │ │ │ ├── Xcode_15_0_XCTTestSchedulerWorker.h │ │ │ │ │ ├── Xcode_15_0_XCTTestWorker.h │ │ │ │ │ ├── Xcode_15_0_XCTUniformTypeIdentifier.h │ │ │ │ │ ├── Xcode_15_0_XCTUniformTypeIdentifier_Internal.h │ │ │ │ │ ├── Xcode_15_0_XCTVariationOptions.h │ │ │ │ │ ├── Xcode_15_0_XCTWaiter.h │ │ │ │ │ ├── Xcode_15_0_XCTWaiterManagement.h │ │ │ │ │ ├── Xcode_15_0_XCTWaiterManager.h │ │ │ │ │ ├── Xcode_15_0_XCTWaiterWait.h │ │ │ │ │ ├── Xcode_15_0_XCTest.h │ │ │ │ │ ├── Xcode_15_0_XCTestCase.h │ │ │ │ │ ├── Xcode_15_0_XCTestCaseDiscoveryUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTestCasePlaceholder.h │ │ │ │ │ ├── Xcode_15_0_XCTestCasePlaceholderRun.h │ │ │ │ │ ├── Xcode_15_0_XCTestCaseRun.h │ │ │ │ │ ├── Xcode_15_0_XCTestCaseRunConfiguration.h │ │ │ │ │ ├── Xcode_15_0_XCTestCaseSuite.h │ │ │ │ │ ├── Xcode_15_0_XCTestCaseUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTestCastMethodNamesUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTestConfiguration.h │ │ │ │ │ ├── Xcode_15_0_XCTestConfigurationLoader.h │ │ │ │ │ ├── Xcode_15_0_XCTestCore_CDStructures.h │ │ │ │ │ ├── Xcode_15_0_XCTestDriver.h │ │ │ │ │ ├── Xcode_15_0_XCTestDriverUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTestExpectation.h │ │ │ │ │ ├── Xcode_15_0_XCTestExpectationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTestLog.h │ │ │ │ │ ├── Xcode_15_0_XCTestManager_DaemonConnectionInterface.h │ │ │ │ │ ├── Xcode_15_0_XCTestManager_IDEInterface.h │ │ │ │ │ ├── Xcode_15_0_XCTestMisuseObserver.h │ │ │ │ │ ├── Xcode_15_0_XCTestObservationCenter.h │ │ │ │ │ ├── Xcode_15_0_XCTestObserver.h │ │ │ │ │ ├── Xcode_15_0_XCTestProbe.h │ │ │ │ │ ├── Xcode_15_0_XCTestRun.h │ │ │ │ │ ├── Xcode_15_0_XCTestSuite.h │ │ │ │ │ ├── Xcode_15_0_XCTestSuiteRun.h │ │ │ │ │ ├── Xcode_15_0__Dummy_ConformingToLegacyProtocolNames.h │ │ │ │ │ ├── Xcode_15_0__XCTExceptionPointer.h │ │ │ │ │ ├── Xcode_15_0__XCTRunnerDaemonSessionDummyExportedObject.h │ │ │ │ │ ├── Xcode_15_0__XCTSkipFailureException.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifierPlaceholder.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifierSet_Placeholder.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifierSet_Set.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifier_Array.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifier_Class.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifier_Class_LegacyEncoding.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifier_Double.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifier_Method_LegacyEncoding.h │ │ │ │ │ ├── Xcode_15_0__XCTTestIdentifier_SingleContainer.h │ │ │ │ │ ├── Xcode_15_0__XCTestCaseInterruptionException.h │ │ │ │ │ ├── Xcode_15_0__XCTestObservationInternal.h │ │ │ │ │ └── Xcode_15_0__XCTestObservationPrivate.h │ │ │ ├── XCUIAutomation │ │ │ │ ├── Xcode_14_0 │ │ │ │ │ ├── Xcode_14_0_NSError-XCUIApplicationProcess.h │ │ │ │ │ ├── Xcode_14_0_XCAXClient_iOS.h │ │ │ │ │ ├── Xcode_14_0_XCApplicationQuery.h │ │ │ │ │ ├── Xcode_14_0_XCElementSnapshot-XCUIElementAttributes.h │ │ │ │ │ ├── Xcode_14_0_XCPointerEvent.h │ │ │ │ │ ├── Xcode_14_0_XCPointerEventPath.h │ │ │ │ │ ├── Xcode_14_0_XCSourceCodeRecording.h │ │ │ │ │ ├── Xcode_14_0_XCSourceCodeTreeNode.h │ │ │ │ │ ├── Xcode_14_0_XCSourceCodeTreeNodeEnumerator.h │ │ │ │ │ ├── Xcode_14_0_XCSynthesizedEventRecord.h │ │ │ │ │ ├── Xcode_14_0_XCTAttachment-XCUIScreenshot_ConvenienceInitializers.h │ │ │ │ │ ├── Xcode_14_0_XCTCPUMetric-UIAutomation_Private.h │ │ │ │ │ ├── Xcode_14_0_XCTContext-XCUIInterruptionMonitor.h │ │ │ │ │ ├── Xcode_14_0_XCTElementSnapshotAttributeDataSource.h │ │ │ │ │ ├── Xcode_14_0_XCTElementSnapshotProvider.h │ │ │ │ │ ├── Xcode_14_0_XCTIssueHandling.h │ │ │ │ │ ├── Xcode_14_0_XCTMacCatalystStatusProviding.h │ │ │ │ │ ├── Xcode_14_0_XCTMemoryMetric-UIAutomation_Private.h │ │ │ │ │ ├── Xcode_14_0_XCTMessagingChannel_RunnerToUIProcess.h │ │ │ │ │ ├── Xcode_14_0_XCTMessagingRole_UIApplicationStateUpdating.h │ │ │ │ │ ├── Xcode_14_0_XCTMessagingRole_UIAutomationProcess.h │ │ │ │ │ ├── Xcode_14_0_XCTNSPredicateExpectationObject.h │ │ │ │ │ ├── Xcode_14_0_XCTRunnerAutomationSession.h │ │ │ │ │ ├── Xcode_14_0_XCTRunnerDaemonSessionEventRequest.h │ │ │ │ │ ├── Xcode_14_0_XCTRunnerIDESessionUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCTStorageMetric-UIAutomation_Private.h │ │ │ │ │ ├── Xcode_14_0_XCTestCase-UIAutomationDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCTestCaseIssueHandlingUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCUIAXNotificationHandling.h │ │ │ │ │ ├── Xcode_14_0_XCUIAccessibilityAction.h │ │ │ │ │ ├── Xcode_14_0_XCUIAccessibilityAudit.h │ │ │ │ │ ├── Xcode_14_0_XCUIAccessibilityAuditIssue.h │ │ │ │ │ ├── Xcode_14_0_XCUIAccessibilityInterface.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplication.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationAutomationSessionProviding.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationImpl.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationImplDepot.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationManaging.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationMonitor.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationOpenRequest.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationPlatformServicesProviderDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationProcess.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationProcessDelegate.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationProcessManaging.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationProcessTracker.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationRegistry.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationRegistryRecord.h │ │ │ │ │ ├── Xcode_14_0_XCUIApplicationSpecifier.h │ │ │ │ │ ├── Xcode_14_0_XCUIAutomation_CDStructures.h │ │ │ │ │ ├── Xcode_14_0_XCUIButtonConsole.h │ │ │ │ │ ├── Xcode_14_0_XCUICoordinate.h │ │ │ │ │ ├── Xcode_14_0_XCUIDefaultIssueHandler.h │ │ │ │ │ ├── Xcode_14_0_XCUIDevice.h │ │ │ │ │ ├── Xcode_14_0_XCUIDeviceAutomationModeInterface.h │ │ │ │ │ ├── Xcode_14_0_XCUIDeviceEventAndStateInterface.h │ │ │ │ │ ├── Xcode_14_0_XCUIDeviceSetupManager.h │ │ │ │ │ ├── Xcode_14_0_XCUIElement.h │ │ │ │ │ ├── Xcode_14_0_XCUIElementAttributesPrivate.h │ │ │ │ │ ├── Xcode_14_0_XCUIElementBaseEventTarget.h │ │ │ │ │ ├── Xcode_14_0_XCUIElementEventTarget.h │ │ │ │ │ ├── Xcode_14_0_XCUIElementQuery.h │ │ │ │ │ ├── Xcode_14_0_XCUIElementSnapshotCoordinateTransforms.h │ │ │ │ │ ├── Xcode_14_0_XCUIElementTypeQueryProvider_Private.h │ │ │ │ │ ├── Xcode_14_0_XCUIEventSynthesisRequest.h │ │ │ │ │ ├── Xcode_14_0_XCUIHitPointResult.h │ │ │ │ │ ├── Xcode_14_0_XCUIInterruptionHandler.h │ │ │ │ │ ├── Xcode_14_0_XCUIInterruptionMonitor.h │ │ │ │ │ ├── Xcode_14_0_XCUIInterruptionMonitoring.h │ │ │ │ │ ├── Xcode_14_0_XCUIIssueDiagnosticsProviding.h │ │ │ │ │ ├── Xcode_14_0_XCUIKnobControl.h │ │ │ │ │ ├── Xcode_14_0_XCUILocalDeviceScreenDataSource.h │ │ │ │ │ ├── Xcode_14_0_XCUILocalDeviceScreenshotIPCInterface.h │ │ │ │ │ ├── Xcode_14_0_XCUIPlatformApplicationManager.h │ │ │ │ │ ├── Xcode_14_0_XCUIPlatformApplicationServicesProviding.h │ │ │ │ │ ├── Xcode_14_0_XCUIPointTransformationRequest.h │ │ │ │ │ ├── Xcode_14_0_XCUIRecorderNodeFinder.h │ │ │ │ │ ├── Xcode_14_0_XCUIRecorderNodeFinderMatch.h │ │ │ │ │ ├── Xcode_14_0_XCUIRecorderTimingMessage.h │ │ │ │ │ ├── Xcode_14_0_XCUIRecorderUtilities.h │ │ │ │ │ ├── Xcode_14_0_XCUIRectTransformationRequest.h │ │ │ │ │ ├── Xcode_14_0_XCUIRemoteAccessibilityInterface.h │ │ │ │ │ ├── Xcode_14_0_XCUIRemoteSiriInterface.h │ │ │ │ │ ├── Xcode_14_0_XCUIResetAuthorizationStatusOfProtectedResourcesInterface.h │ │ │ │ │ ├── Xcode_14_0_XCUIScreen.h │ │ │ │ │ ├── Xcode_14_0_XCUIScreenDataSource.h │ │ │ │ │ ├── Xcode_14_0_XCUIScreenshot.h │ │ │ │ │ ├── Xcode_14_0_XCUISiriService.h │ │ │ │ │ ├── Xcode_14_0_XCUISnapshotGenerationTracker.h │ │ │ │ │ ├── Xcode_14_0_XCUITransformParameters.h │ │ │ │ │ └── Xcode_14_0__XCTMessaging_VoidProtocol.h │ │ │ │ └── Xcode_15_0 │ │ │ │ │ ├── Xcode_15_0_NSError-XCUIApplicationProcess.h │ │ │ │ │ ├── Xcode_15_0_NSString-XCUIAdditions.h │ │ │ │ │ ├── Xcode_15_0_XCAXClient_iOS.h │ │ │ │ │ ├── Xcode_15_0_XCActivityRecord-UITesting.h │ │ │ │ │ ├── Xcode_15_0_XCApplicationQuery.h │ │ │ │ │ ├── Xcode_15_0_XCElementSnapshot-XCUIElementAttributes.h │ │ │ │ │ ├── Xcode_15_0_XCPointerEvent.h │ │ │ │ │ ├── Xcode_15_0_XCPointerEventPath.h │ │ │ │ │ ├── Xcode_15_0_XCSourceCodeRecording.h │ │ │ │ │ ├── Xcode_15_0_XCSourceCodeTreeNode.h │ │ │ │ │ ├── Xcode_15_0_XCSourceCodeTreeNodeEnumerator.h │ │ │ │ │ ├── Xcode_15_0_XCSynthesizedEventRecord.h │ │ │ │ │ ├── Xcode_15_0_XCTApplicationBundleInfo-AutomaticTestRunConfigurations.h │ │ │ │ │ ├── Xcode_15_0_XCTAttachment-XCUIScreenshot_ConvenienceInitializers.h │ │ │ │ │ ├── Xcode_15_0_XCTCPUMetric-UIAutomation_Private.h │ │ │ │ │ ├── Xcode_15_0_XCTContext-XCUIInterruptionMonitor.h │ │ │ │ │ ├── Xcode_15_0_XCTImageEncoding-XCTImageEncodingXCTImageQualityUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTMemoryMetric-UIAutomation_Private.h │ │ │ │ │ ├── Xcode_15_0_XCTNSPredicateExpectationObject.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerAutomationSession.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerDaemonSession-XCUIPlatformApplicationServicesProviding.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerDaemonSessionEventRequest.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerIDESession-UIAutomation.h │ │ │ │ │ ├── Xcode_15_0_XCTRunnerIDESessionUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTStorageMetric-UIAutomation_Private.h │ │ │ │ │ ├── Xcode_15_0_XCTestCase-UIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTestCaseIssueHandlingUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCTestDriver-XCTTestRunSessionUIAutomationDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCUIAXNotificationHandling.h │ │ │ │ │ ├── Xcode_15_0_XCUIAccessibilityAction.h │ │ │ │ │ ├── Xcode_15_0_XCUIAccessibilityAudit.h │ │ │ │ │ ├── Xcode_15_0_XCUIAccessibilityAuditIssue.h │ │ │ │ │ ├── Xcode_15_0_XCUIAccessibilityInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplication.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationAutomationSessionProviding.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationImpl.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationImplDepot.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationManaging.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationMonitor.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationOpenRequest.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationPlatformServicesProviderDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationProcess.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationProcessDelegate.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationProcessManaging.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationProcessTracker.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationRegistry.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationRegistryRecord.h │ │ │ │ │ ├── Xcode_15_0_XCUIApplicationSpecifier.h │ │ │ │ │ ├── Xcode_15_0_XCUIAutomation_CDStructures.h │ │ │ │ │ ├── Xcode_15_0_XCUIButtonConsole.h │ │ │ │ │ ├── Xcode_15_0_XCUICoordinate.h │ │ │ │ │ ├── Xcode_15_0_XCUIDefaultIssueHandler.h │ │ │ │ │ ├── Xcode_15_0_XCUIDevice.h │ │ │ │ │ ├── Xcode_15_0_XCUIDeviceAutomationModeInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUIDeviceDelayedAttachmentTransferSupportInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUIDeviceEventAndStateInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUIDeviceSetupManager.h │ │ │ │ │ ├── Xcode_15_0_XCUIElement.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementAttributesPrivate.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementBaseEventTarget.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementEmbeddedEventTarget.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementEventTarget.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementHitPointCoordinate.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementQuery.h │ │ │ │ │ ├── Xcode_15_0_XCUIElementTypeQueryProvider_Private.h │ │ │ │ │ ├── Xcode_15_0_XCUIEventSynthesisRequest.h │ │ │ │ │ ├── Xcode_15_0_XCUIHitPointResult.h │ │ │ │ │ ├── Xcode_15_0_XCUIInterruptionHandler.h │ │ │ │ │ ├── Xcode_15_0_XCUIInterruptionMonitor.h │ │ │ │ │ ├── Xcode_15_0_XCUIInterruptionMonitoring.h │ │ │ │ │ ├── Xcode_15_0_XCUIIssueDiagnosticsProviding.h │ │ │ │ │ ├── Xcode_15_0_XCUIKnobControl.h │ │ │ │ │ ├── Xcode_15_0_XCUILocalDeviceScreenDataSource.h │ │ │ │ │ ├── Xcode_15_0_XCUILocalDeviceScreenshotIPCInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUILocation.h │ │ │ │ │ ├── Xcode_15_0_XCUIPlatformApplicationManager.h │ │ │ │ │ ├── Xcode_15_0_XCUIPlatformApplicationServicesProviding.h │ │ │ │ │ ├── Xcode_15_0_XCUIPointTransformationRequest.h │ │ │ │ │ ├── Xcode_15_0_XCUIRecorderNodeFinder.h │ │ │ │ │ ├── Xcode_15_0_XCUIRecorderNodeFinderMatch.h │ │ │ │ │ ├── Xcode_15_0_XCUIRecorderTimingMessage.h │ │ │ │ │ ├── Xcode_15_0_XCUIRecorderUtilities.h │ │ │ │ │ ├── Xcode_15_0_XCUIRectTransformationRequest.h │ │ │ │ │ ├── Xcode_15_0_XCUIRemoteAccessibilityInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUIRemoteSiriInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUIResetAuthorizationStatusOfProtectedResourcesInterface.h │ │ │ │ │ ├── Xcode_15_0_XCUIScreen.h │ │ │ │ │ ├── Xcode_15_0_XCUIScreenDataSource.h │ │ │ │ │ ├── Xcode_15_0_XCUIScreenshot.h │ │ │ │ │ ├── Xcode_15_0_XCUISiriService.h │ │ │ │ │ ├── Xcode_15_0_XCUISnapshotGenerationTracker.h │ │ │ │ │ ├── Xcode_15_0_XCUISystem.h │ │ │ │ │ ├── Xcode_15_0_XCUITransformParameters.h │ │ │ │ │ └── Xcode_15_0_XCUIXcodeApplicationManaging.h │ │ │ └── dump.py │ │ └── Manual │ │ │ ├── CoreLocation │ │ │ └── CLLocationManager+Private.h │ │ │ ├── Disassembled │ │ │ └── _XCTCurrentTestCase.h │ │ │ ├── PublicHeadersExposure.h │ │ │ └── XCTest │ │ │ ├── DTXConnection │ │ │ └── Xcode_15_0_DTXConnection.h │ │ │ ├── DTXProxyChannel │ │ │ ├── Xcode_10_0_DTXProxyChannel.h │ │ │ ├── Xcode_10_1_DTXProxyChannel.h │ │ │ ├── Xcode_10_2_DTXProxyChannel.h │ │ │ ├── Xcode_10_3_DTXProxyChannel.h │ │ │ ├── Xcode_11_0_DTXProxyChannel.h │ │ │ ├── Xcode_12_0_DTXProxyChannel.h │ │ │ ├── Xcode_13_0_DTXProxyChannel.h │ │ │ └── Xcode_15_0_DTXProxyChannel.h │ │ │ ├── SharedHeader │ │ │ ├── Includes │ │ │ │ ├── DispatchEventEventBuilder.h │ │ │ │ └── Xcode_All_SharedHeader.h │ │ │ ├── Xcode_10_0_SharedHeader.h │ │ │ ├── Xcode_10_1_SharedHeader.h │ │ │ ├── Xcode_10_2_SharedHeader.h │ │ │ ├── Xcode_10_3_SharedHeader.h │ │ │ ├── Xcode_11_0_SharedHeader.h │ │ │ ├── Xcode_12_0_SharedHeader.h │ │ │ ├── Xcode_13_0_SharedHeader.h │ │ │ ├── Xcode_14_0_SharedHeader.h │ │ │ └── Xcode_15_0_SharedHeader.h │ │ │ └── Xcode_10_All_XCTTestSchedulerDelegate.h │ │ ├── Reporting │ │ ├── Attachments │ │ │ ├── Attachment.swift │ │ │ └── AttachmentContent.swift │ │ ├── CurrentTestCase │ │ │ ├── AutomaticCurrentTestCaseProvider.swift │ │ │ ├── CurrentTestCaseProvider.swift │ │ │ ├── CurrentTestCaseSettable.swift │ │ │ └── ManuallySetCurrentTestCaseProvider.swift │ │ ├── FileLineForFailureProvider │ │ │ ├── FileLineForFailureProvider.swift │ │ │ ├── Impls │ │ │ │ ├── FirstOfTargetFileFromCallStackFileLineForFailureProvider.swift │ │ │ │ ├── LastCallOfCurrentTestFileLineForFailureProvider.swift │ │ │ │ └── NoopFileLineForFailureProvider.swift │ │ │ └── StackTrace │ │ │ │ ├── ExtendedStackTraceEntry.swift │ │ │ │ ├── ExtendedStackTraceEntryFromStackTraceEntryConverter.swift │ │ │ │ ├── ExtendedStackTraceEntryFromStackTraceEntryConverterImpl.swift │ │ │ │ ├── ExtendedStackTraceProvider.swift │ │ │ │ ├── ExtendedStackTraceProviderImpl.swift │ │ │ │ └── Simple │ │ │ │ ├── StackTraceEntry.swift │ │ │ │ ├── StackTraceProvider.swift │ │ │ │ └── StackTraceProviderImpl.swift │ │ ├── Stepping │ │ │ ├── Models │ │ │ │ ├── StepLog.swift │ │ │ │ ├── StepLogAfter.swift │ │ │ │ ├── StepLogBefore.swift │ │ │ │ └── StepLoggerResultWrapper.swift │ │ │ ├── StepLogger.swift │ │ │ ├── StepLoggerImpl.swift │ │ │ ├── StepLogsCleaner.swift │ │ │ ├── StepLogsProvider.swift │ │ │ └── Stepper.swift │ │ ├── TestFailureRecorder.swift │ │ ├── WorkaroundForDeprecatonWarning │ │ │ ├── TestCaseSuppressingWarningAboutDeprecatedRecordFailure.h │ │ │ ├── TestCaseSuppressingWarningAboutDeprecatedRecordFailure.m │ │ │ ├── XCTestCase+SuppressingWarningAboutDeprecatedRecordFailure.h │ │ │ └── XCTestCase+SuppressingWarningAboutDeprecatedRecordFailure.m │ │ ├── XcTestFailureRecorder.swift │ │ ├── XctActivityStepLogger.swift │ │ └── XctAttachmentsAdder │ │ │ ├── XctAttachmentsAdder.swift │ │ │ └── XctAttachmentsAdderImpl.swift │ │ └── Utilities │ │ ├── Extensions │ │ ├── Collection+ElementOrFail.swift │ │ ├── Collection+OnlyOrFail.swift │ │ ├── Optional+DescriptionOrNil.swift │ │ └── Optional+UnwrapOrFail.swift │ │ ├── FileSystem │ │ ├── ApplicationPaths │ │ │ ├── ApplicationBundleProvider.swift │ │ │ └── Impls │ │ │ │ ├── BuiltApplicationPathsProvider.swift │ │ │ │ └── InstalledApplicationPathsProvider.swift │ │ ├── CurrentSimulatorFileSystemRootProvider │ │ │ ├── CurrentApplicationCurrentSimulatorFileSystemRootProvider.swift │ │ │ └── CurrentSimulatorFileSystemRootProvider.swift │ │ └── SimulatorFileSystemRoot │ │ │ └── SimulatorFileSystemRoot.swift │ │ ├── Media │ │ ├── ImageProvider │ │ │ ├── ImageProvider.swift │ │ │ ├── LazyBundledImageProvider.swift │ │ │ ├── LazyByPathImageProvider.swift │ │ │ └── StubbedImageProvider.swift │ │ ├── ImagesProvider │ │ │ ├── ImagesProvider.swift │ │ │ └── StubbedImagesProvider.swift │ │ ├── PhotoSaver │ │ │ ├── PhotoSaver.swift │ │ │ ├── PhotoSaverCompletion.swift │ │ │ └── PhotoSaverImpl.swift │ │ └── PhotoStubber │ │ │ ├── PhotoStubber.swift │ │ │ └── PhotoStubberImpl.swift │ │ ├── Permissions │ │ ├── Facade │ │ │ ├── ApplicationPermissionsSetter.swift │ │ │ └── ApplicationPermissionsSetterImpl.swift │ │ ├── Factory │ │ │ ├── ApplicationPermissionsSetterFactory.swift │ │ │ └── ApplicationPermissionsSetterFactoryImpl │ │ │ │ ├── ApplicationPermissionsSetterFactoryImpl.swift │ │ │ │ ├── Notifications │ │ │ │ ├── AlwaysFailing │ │ │ │ │ └── AlwaysFailingNotificationsApplicationPermissionSetterFactory.swift │ │ │ │ └── NotificationsApplicationPermissionSetterFactory.swift │ │ │ │ └── TccDb │ │ │ │ ├── TccDbApplicationPermissionSetterFactory.swift │ │ │ │ └── TccDbApplicationPermissionSetterFactoryImpl.swift │ │ ├── Implementation │ │ │ ├── AlwaysFailing │ │ │ │ └── AlwaysFailingApplicationPermissionWithoutNotDeterminedStateSetter.swift │ │ │ ├── Geolocation │ │ │ │ ├── Factory │ │ │ │ │ ├── GeolocationApplicationPermissionSetterFactory.swift │ │ │ │ │ └── GeolocationApplicationPermissionSetterFactoryImpl.swift │ │ │ │ └── IosVersionSpecific │ │ │ │ │ ├── AllowedDeniedNotDeterminedStateToClAuthorizationStatusConverter.swift │ │ │ │ │ ├── ClLocationManagerAuthorizationStatusWaiter.swift │ │ │ │ │ ├── Ios12GeolocationApplicationPermissionSetter.swift │ │ │ │ │ └── IosFrom9To11GeolocationApplicationPermissionSetter.swift │ │ │ └── TccDb │ │ │ │ ├── Facade │ │ │ │ └── TccDbApplicationPermissionSetter.swift │ │ │ │ └── Support │ │ │ │ └── TccPrivacySettingsManager │ │ │ │ ├── Models │ │ │ │ ├── TccService.swift │ │ │ │ └── TccServicePrivacyState.swift │ │ │ │ ├── TccDb │ │ │ │ ├── Impls │ │ │ │ │ ├── ErrorsWrappingTccDb.swift │ │ │ │ │ ├── TccDb_iOS_from_10_to_13.swift │ │ │ │ │ └── TccDb_iOS_from_14.swift │ │ │ │ ├── Model │ │ │ │ │ └── TccDbServiceId.swift │ │ │ │ ├── TccDb.swift │ │ │ │ ├── TccDbFactory.swift │ │ │ │ ├── TccDbFactoryImpl.swift │ │ │ │ └── TccDbFinder │ │ │ │ │ ├── TccDbFinder.swift │ │ │ │ │ └── TccDbFinderImpl.swift │ │ │ │ ├── TccPrivacySettingsManager.swift │ │ │ │ └── TccPrivacySettingsManagerImpl.swift │ │ └── Single │ │ │ ├── ApplicationPermissionSetter │ │ │ ├── AllowedDeniedNotDeterminedState.swift │ │ │ └── ApplicationPermissionSetter.swift │ │ │ └── ApplicationPermissionWithoutNotDeterminedStateSetter │ │ │ ├── AllowedDeniedState.swift │ │ │ └── ApplicationPermissionWithoutNotDeterminedStateSetter.swift │ │ ├── UnavoidableFailure │ │ ├── TestFailureRecorder+UnavoidableFailure.swift │ │ └── UnavoidableFailure.swift │ │ └── XcodeVersion │ │ ├── XcodeVersion.swift │ │ ├── XcodeVersionProvider.swift │ │ ├── XcodeVersionProviderObjC.h │ │ └── XcodeVersionProviderObjC.m ├── UiKit │ ├── README.md │ └── Sources │ │ ├── Extensions │ │ ├── CoreGraphics │ │ │ ├── CGFloat+Extensions.swift │ │ │ ├── CGPoint+Extensions.swift │ │ │ ├── CGRect │ │ │ │ ├── CGRect+Alignment.swift │ │ │ │ ├── CGRect+Area.swift │ │ │ │ ├── CGRect+Insets.swift │ │ │ │ ├── CGRect+Pixels.swift │ │ │ │ ├── CGRect+Rounding.swift │ │ │ │ └── CGRect+Transforming.swift │ │ │ ├── CGSize+Extensions.swift │ │ │ ├── CGVector+Extensions.swift │ │ │ └── Coordinates+Operators.swift │ │ └── UIKit │ │ │ ├── UIDevice+Extension.swift │ │ │ ├── UIEdgeInsets+Extensions.swift │ │ │ └── UIView+Extensions.swift │ │ ├── IosVersion │ │ ├── IosVersion.swift │ │ ├── IosVersionProvider │ │ │ ├── IosVersionProvider.swift │ │ │ └── UiDeviceIosVersionProvider.swift │ │ └── MixboxInternalStaticChecks │ │ │ └── MixboxIosVersions.swift │ │ └── UserInterfaceIdiomProvider │ │ ├── UiDeviceUserInterfaceIdiomProvider.swift │ │ └── UserInterfaceIdiomProvider.swift └── UiTestsFoundation │ └── Sources │ ├── Di │ ├── ApplicationIndependentUiTestsDependencyCollectionRegisterer.swift │ └── IpcClientsDependencyCollectionRegisterer.swift │ ├── Interaction │ └── Interaction │ │ └── Common │ │ ├── InteractionFailure.swift │ │ ├── InteractionResult.swift │ │ └── InteractionType.swift │ ├── IpcClients │ ├── IpcClients.md │ ├── Keyboard │ │ ├── Builder │ │ │ └── KeyboardEventBuilder.swift │ │ ├── IpcKeyboardEventInjector.swift │ │ └── SyncronousKeyboardEventInjector │ │ │ ├── SynchronousKeyboardEventInjector+Builder.swift │ │ │ ├── SynchronousKeyboardEventInjector.swift │ │ │ └── SynchronousKeyboardEventInjectorImpl.swift │ ├── LocationSimulation │ │ └── LocationSimulator.swift │ ├── OpenUrl │ │ ├── UrlOpener.swift │ │ └── UrlOpenerImpl.swift │ ├── PageObjectMakingHelper │ │ ├── AlertDisplayer │ │ │ └── IpcAlertDisplayer.swift │ │ └── PageObjectElementGenerationWizardRunner │ │ │ └── IpcPageObjectElementGenerationWizardRunner.swift │ ├── Pasteboard │ │ └── IpcPasteboard.swift │ └── ScrollingHintsProvider │ │ ├── ScrollingHintsProvider.swift │ │ └── ScrollingHintsProviderImpl.swift │ ├── LegacyNetworkMocking │ ├── Autorecording │ │ ├── Factory │ │ │ ├── AutomaticRecorderAndReplayerCreationSettingsProvider │ │ │ │ ├── AutomaticRecorderAndReplayerCreationSettings.swift │ │ │ │ ├── AutomaticRecorderAndReplayerCreationSettingsProvider.swift │ │ │ │ └── AutomaticRecorderAndReplayerCreationSettingsProviderImpl.swift │ │ │ ├── NetworkAutomaticRecorderAndReplayerProvider │ │ │ │ ├── NetworkAutomaticRecorderAndReplayerProvider.swift │ │ │ │ └── NetworkAutomaticRecorderAndReplayerProviderImpl.swift │ │ │ ├── RecordedNetworkSessionFileLoader │ │ │ │ ├── RecordedNetworkSessionFileLoader.swift │ │ │ │ └── RecordedNetworkSessionFileLoaderImpl.swift │ │ │ └── RecordedNetworkSessionPath │ │ │ │ ├── RecordedNetworkSessionDirectory.swift │ │ │ │ ├── RecordedNetworkSessionDirectoryWithDefaultName.swift │ │ │ │ └── RecordedNetworkSessionPath.swift │ │ ├── Model │ │ │ ├── RecordedNetworkSession.swift │ │ │ ├── RecordedStub.swift │ │ │ ├── RecordedStubBucket.swift │ │ │ ├── RecordedStubRequest.swift │ │ │ ├── RecordedStubResponse.swift │ │ │ └── RecordedStubResponseData.swift │ │ ├── Observing │ │ │ ├── DummyNetworkReplayingObserver.swift │ │ │ └── NetworkReplayingObserver.swift │ │ └── Player │ │ │ ├── NetworkPlayer.swift │ │ │ ├── RecordingNetworkPlayer │ │ │ ├── Parts │ │ │ │ ├── IdForCallOfCheckpointFunctionInserter.swift │ │ │ │ ├── MonitoredNetworkRequestForRecordingValidator.swift │ │ │ │ └── RecordedNetworkSessionWriter.swift │ │ │ └── RecordingNetworkPlayer.swift │ │ │ └── ReplayingNetworkPlayer │ │ │ ├── RecordedSessionStubber.swift │ │ │ ├── RecordedSessionStubberImpl.swift │ │ │ └── ReplayingNetworkPlayer.swift │ ├── Facade │ │ ├── Everything │ │ │ ├── LegacyNetworking.swift │ │ │ └── LegacyNetworkingImpl.swift │ │ ├── Recording │ │ │ ├── LegacyNetworkRecording.swift │ │ │ └── LegacyNetworkRecordingImpl.swift │ │ └── Stubbing │ │ │ └── LegacyNetworkStubbing.swift │ ├── Recording │ │ ├── MonitoredNetworkRequest.swift │ │ ├── NetworkRecorderLifecycle.swift │ │ └── NetworkRecordsProvider.swift │ └── Stubbing │ │ ├── Models │ │ └── HttpMethod.swift │ │ ├── Request │ │ └── StubRequestBuilder.swift │ │ └── Response │ │ ├── StubResponseBuilder.swift │ │ └── StubResponseBuilderResponseValue.swift │ ├── PageObject │ ├── BasePageObjectDependenciesFactory.swift │ ├── DefaultBaseClasses │ │ ├── BasePageObject.swift │ │ ├── BasePageObjectWithDefaultInitializer.swift │ │ └── BasePageObjects.swift │ ├── PageObject.swift │ ├── PageObjectDependenciesFactory.swift │ └── Registration │ │ ├── PageObjectRegistrar.swift │ │ └── PageObjectRegistrarImpl.swift │ ├── PageObjectElement │ ├── DI │ │ ├── Builders │ │ │ ├── FieldBuilder.swift │ │ │ ├── FieldBuilderCallImplementation.swift │ │ │ ├── FieldBuilderProperty+CustomizableScalar.swift │ │ │ ├── FieldBuilderProperty.swift │ │ │ └── Impls │ │ │ │ ├── StructureFieldBuilderCallImplementation.swift │ │ │ │ └── SubstructureFieldBuilderCallImplementation.swift │ │ ├── ElementFactory.swift │ │ ├── ElementFactoryElementSettings.swift │ │ ├── ElementFactoryImpl.swift │ │ ├── PageObjectElementCoreFactory.swift │ │ └── PageObjectElementCoreFactoryImpl.swift │ ├── Element.swift │ ├── Finder │ │ ├── CandidatesDescription.swift │ │ ├── ElementFinder.swift │ │ ├── ElementQuery.swift │ │ ├── ElementQueryResolvingState.swift │ │ ├── ResolvedElementQuery.swift │ │ └── UiKitHierarchy │ │ │ ├── UiKitHierarchyElementFinder.swift │ │ │ ├── UiKitHierarchyElementQuery.swift │ │ │ └── UiKitHierarchyElementSnaphot.swift │ ├── InteractionSettings │ │ ├── ElementSettings │ │ │ └── ElementSettings.swift │ │ ├── InteractionSettings │ │ │ └── InteractionSettings.swift │ │ ├── InteractionSettingsDefaults │ │ │ ├── InteractionSettingsDefaults.swift │ │ │ ├── InteractionSettingsDefaultsProvider.swift │ │ │ └── InteractionSettingsDefaultsProviderImpl.swift │ │ └── Models │ │ │ ├── FunctionDeclarationLocation.swift │ │ │ ├── InteractionMode.swift │ │ │ └── SearchMode.swift │ ├── Interactions │ │ ├── Actions │ │ │ ├── ElementAction │ │ │ │ ├── BaseElementInteractionDependenciesFactory.swift │ │ │ │ ├── ElementInteraction.swift │ │ │ │ ├── ElementInteractionDependencies │ │ │ │ │ ├── Dependencies │ │ │ │ │ │ ├── ApplicationFrameProvider │ │ │ │ │ │ │ └── ApplicationFrameProvider.swift │ │ │ │ │ │ ├── ElementHierarchyDescriptionProvider.swift │ │ │ │ │ │ ├── EventGenerator │ │ │ │ │ │ │ └── EventGenerator.swift │ │ │ │ │ │ ├── FailureFactory │ │ │ │ │ │ │ ├── ApplicationStateProvider │ │ │ │ │ │ │ │ ├── ApplicationState.swift │ │ │ │ │ │ │ │ └── ApplicationStateProvider.swift │ │ │ │ │ │ │ ├── InteractionFailureResultFactory.swift │ │ │ │ │ │ │ └── InteractionFailureResultFactoryImpl.swift │ │ │ │ │ │ ├── Gestures │ │ │ │ │ │ │ ├── ElementSimpleGestures.swift │ │ │ │ │ │ │ └── ElementSimpleGesturesProvider.swift │ │ │ │ │ │ ├── InteractionResultMaker │ │ │ │ │ │ │ ├── InteractionResultMaker.swift │ │ │ │ │ │ │ ├── InteractionResultMakerImpl.swift │ │ │ │ │ │ │ └── ScreenshotAttachmentsMaker.swift │ │ │ │ │ │ ├── InteractionRetrier │ │ │ │ │ │ │ ├── InteractionRetrier.swift │ │ │ │ │ │ │ └── InteractionRetrierImpl.swift │ │ │ │ │ │ ├── MenuItem │ │ │ │ │ │ │ ├── MenuItem.swift │ │ │ │ │ │ │ └── MenuItemProvider.swift │ │ │ │ │ │ ├── NestedInteractionPerformer │ │ │ │ │ │ │ ├── NestedInteractionPerformer.swift │ │ │ │ │ │ │ └── NestedInteractionPerformerImpl.swift │ │ │ │ │ │ ├── Pasteboard │ │ │ │ │ │ │ ├── Pasteboard.swift │ │ │ │ │ │ │ └── UikitPasteboard.swift │ │ │ │ │ │ ├── PerformerOfSpecificImplementationOfInteractionForVisibleElement │ │ │ │ │ │ │ ├── PerformerOfSpecificImplementationOfInteractionForVisibleElement.swift │ │ │ │ │ │ │ └── PerformerOfSpecificImplementationOfInteractionForVisibleElementImpl.swift │ │ │ │ │ │ ├── Resolving │ │ │ │ │ │ │ ├── ElementResolverWithScrollingAndRetries.swift │ │ │ │ │ │ │ └── ElementResolverWithScrollingAndRetriesImpl.swift │ │ │ │ │ │ ├── RetriableTimedInteractionState │ │ │ │ │ │ │ ├── IsPossibleToRetryProvider.swift │ │ │ │ │ │ │ ├── MarkableAsImpossibleToRetry.swift │ │ │ │ │ │ │ ├── RetriableTimedInteractionState.swift │ │ │ │ │ │ │ ├── RetriableTimedInteractionStateForNestedRetryOperationProvider.swift │ │ │ │ │ │ │ └── RetriableTimedInteractionStateImpl.swift │ │ │ │ │ │ ├── Retrying │ │ │ │ │ │ │ ├── Retrier.swift │ │ │ │ │ │ │ └── RetrierImpl.swift │ │ │ │ │ │ ├── Scrolling │ │ │ │ │ │ │ ├── Implementation │ │ │ │ │ │ │ │ ├── ScrollerImpl.swift │ │ │ │ │ │ │ │ └── ScrollingContext.swift │ │ │ │ │ │ │ ├── Scroller.swift │ │ │ │ │ │ │ └── ScrollingResult.swift │ │ │ │ │ │ ├── SnapshotForInteractionResolver │ │ │ │ │ │ │ ├── SnapshotForInteractionResolver.swift │ │ │ │ │ │ │ ├── SnapshotForInteractionResolverArguments.swift │ │ │ │ │ │ │ ├── SnapshotForInteractionResolverImpl.swift │ │ │ │ │ │ │ └── SnapshotForInteractionResolverResult.swift │ │ │ │ │ │ ├── TextTyper │ │ │ │ │ │ │ ├── TextTyper.swift │ │ │ │ │ │ │ ├── TextTyperInstruction.swift │ │ │ │ │ │ │ └── TextTyperKey.swift │ │ │ │ │ │ └── WaitingForQuiescence │ │ │ │ │ │ │ └── ApplicationQuiescenceWaiter.swift │ │ │ │ │ ├── ElementInteractionDependencies.swift │ │ │ │ │ └── ElementInteractionDependenciesImpl.swift │ │ │ │ ├── ElementInteractionDependenciesFactory.swift │ │ │ │ └── Impls │ │ │ │ │ ├── Text │ │ │ │ │ ├── Facade │ │ │ │ │ │ ├── AndElementAction.swift │ │ │ │ │ │ ├── SetTextAction.swift │ │ │ │ │ │ └── SetTextActionFactory.swift │ │ │ │ │ ├── Other │ │ │ │ │ │ ├── CutTextAction.swift │ │ │ │ │ │ ├── FocusKeyboardOnElementAction.swift │ │ │ │ │ │ └── OpenTextMenuAction.swift │ │ │ │ │ ├── SettingText │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── SetTextByPastingUsingKeyboard.swift │ │ │ │ │ │ │ ├── SetTextByPastingUsingPopupMenus.swift │ │ │ │ │ │ │ └── SetTextByTypingUsingKeyboard.swift │ │ │ │ │ │ └── Domain │ │ │ │ │ │ │ └── TextEditingActionMode.swift │ │ │ │ │ ├── Support │ │ │ │ │ │ ├── BaseElementActionWrapper.swift │ │ │ │ │ │ └── WrappedDescriptionElementInteraction.swift │ │ │ │ │ └── TextMenu │ │ │ │ │ │ ├── TextMenuAction.swift │ │ │ │ │ │ └── TextMenuActionFactory.swift │ │ │ │ │ └── Touches │ │ │ │ │ ├── Models │ │ │ │ │ └── TouchActionSpeed.swift │ │ │ │ │ ├── Press │ │ │ │ │ └── PressAction.swift │ │ │ │ │ ├── Swipe │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── SwipeActionEndPoint.swift │ │ │ │ │ │ └── SwipeActionStartPoint.swift │ │ │ │ │ ├── Support │ │ │ │ │ │ ├── SwipeActionDescriptionProvider.swift │ │ │ │ │ │ ├── SwipeActionPath.swift │ │ │ │ │ │ ├── SwipeActionPathCalculator.swift │ │ │ │ │ │ └── SwipeActionPathSettings.swift │ │ │ │ │ └── SwipeAction.swift │ │ │ │ │ └── Tap │ │ │ │ │ └── TapAction.swift │ │ │ ├── InteractionCoordinates+Extension.swift │ │ │ └── InteractionPerformer │ │ │ │ ├── ElementInteractionWithDependenciesPerformer.swift │ │ │ │ ├── FailureHandlingElementInteractionWithDependenciesPerformer.swift │ │ │ │ ├── LoggingElementInteractionWithDependenciesPerformer.swift │ │ │ │ └── PerformingElementInteractionWithDependenciesPerformer.swift │ │ ├── Checks │ │ │ ├── IsDisplayedAndMatchesCheck.swift │ │ │ └── IsNotDisplayedCheck.swift │ │ ├── ElementResolver │ │ │ ├── ElementResolver.swift │ │ │ ├── ElementResolverImpl.swift │ │ │ └── WaitingForQuiescenceElementResolver.swift │ │ ├── HumanReadableInteractionDescriptionBuilder │ │ │ ├── HumanReadableInteractionDescriptionBuilder.swift │ │ │ ├── HumanReadableInteractionDescriptionBuilderImpl.swift │ │ │ └── HumanReadableInteractionDescriptionBuilderSource.swift │ │ ├── Interaction │ │ │ ├── ElementInteractionPerformer.swift │ │ │ └── InteractionPerformingSettings.swift │ │ ├── PollingConfiguration.swift │ │ └── Specific │ │ │ └── InteractionSpecificImplementation.swift │ ├── Kinds │ │ ├── AbstractionOfDriver │ │ │ ├── PageObjectElement │ │ │ │ ├── PageObjectElementCore+FacadeMakingHelpers.swift │ │ │ │ ├── PageObjectElementCore.swift │ │ │ │ └── PageObjectElementCoreImpl.swift │ │ │ └── PageObjectElementInteractionPerformer │ │ │ │ ├── PageObjectElementInteractionPerformer.swift │ │ │ │ └── PageObjectElementInteractionPerformerImpl.swift │ │ ├── Endpoints │ │ │ ├── Base │ │ │ │ ├── BaseElement.swift │ │ │ │ ├── BaseElementWithDefaultInitializer.swift │ │ │ │ └── ElementWithDefaultInitializer.swift │ │ │ ├── ButtonElement.swift │ │ │ ├── ImageElement.swift │ │ │ ├── InputElement.swift │ │ │ ├── LabelElement.swift │ │ │ ├── ScrollElement.swift │ │ │ └── ViewElement.swift │ │ └── Parts │ │ │ ├── ElementWithEnabledState │ │ │ ├── ElementWithEnabledState+Asserts.swift │ │ │ └── ElementWithEnabledState.swift │ │ │ ├── ElementWithText │ │ │ ├── ElementWithText+Actions.swift │ │ │ ├── ElementWithText+Asserts.swift │ │ │ ├── ElementWithText+Values.swift │ │ │ └── ElementWithText.swift │ │ │ ├── ElementWithUi │ │ │ ├── ElementWithUi+Asserts.swift │ │ │ ├── ElementWithUi+Press.swift │ │ │ ├── ElementWithUi+Swipe.swift │ │ │ ├── ElementWithUi+Tap.swift │ │ │ ├── ElementWithUi+Values.swift │ │ │ └── ElementWithUi.swift │ │ │ └── SwipeDirection.swift │ ├── Locator │ │ └── Domain │ │ │ └── ElementType.swift │ └── Snapshot │ │ ├── ElementMatcher.swift │ │ ├── ElementSnapshot.swift │ │ ├── MatcherBuilders │ │ ├── CGPointPropertyMatcherBuilder.swift │ │ ├── CGRectPropertyMatcherBuilder.swift │ │ ├── CGSizePropertyMatcherBuilder.swift │ │ ├── CustomValuesMatcherBuilder.swift │ │ └── ElementMatcherBuilder.swift │ │ └── Matchers │ │ ├── HasKeyboardFocusOrHasDescendantThatHasKeyboardFocusElementSnapshotMatcher.swift │ │ ├── HasNoSuperviewMatcher.swift │ │ ├── IsInstanceMatcher.swift │ │ ├── IsNotDefinitelyHiddenMatcher.swift │ │ ├── IsSubviewMatcher.swift │ │ ├── ReferenceImageMatcher.swift │ │ └── SnapshotHierarchyMatcher.swift │ ├── PageObjects │ └── PageObjectsMarkerProtocol.swift │ ├── Screenshots │ ├── ApplicationScreenshotTaker.swift │ ├── DeviceScreenshotTaker.swift │ ├── ElementImageProvider │ │ ├── ElementImageProvider.swift │ │ └── ElementImageProviderImpl.swift │ └── Hashing │ │ ├── CocoaImageHashing │ │ ├── AHashImageHashCalculator.swift │ │ ├── BaseCocoaImageHashingImageHashCalculator.swift │ │ ├── DHashImageHashCalculator.swift │ │ └── PHashImageHashCalculator.swift │ │ └── ImageHashCalculator.swift │ └── Utils │ ├── ElementVisibilityChecker │ ├── ElementVisibilityChecker.swift │ ├── ElementVisibilityCheckerImpl.swift │ └── ElementVisibilityCheckerResult.swift │ ├── Extensions │ ├── CustomizableScalar+FromOptional.swift │ ├── IpcThrowingFunctionResult+GetReturnValueOrFail.swift │ └── SynchronousIpcClient+CallOrFail.swift │ ├── LazilyInitializedIpcClient.swift │ ├── PageObjectMakingHelper │ └── InteractionFailureDebugger │ │ ├── InteractionFailureDebugger.swift │ │ ├── InteractionFailureDebuggerImpl.swift │ │ ├── InteractionFailureDebuggingResult.swift │ │ └── NoopInteractionFailureDebugger.swift │ ├── SnapshotComparison │ ├── DifferenceImageGenerator │ │ ├── DifferenceImageGenerator.swift │ │ └── DifferenceImageGeneratorImpl.swift │ ├── Factory │ │ ├── SnapshotsComparatorFactory.swift │ │ ├── SnapshotsComparatorFactoryImpl.swift │ │ └── SnapshotsComparators.swift │ ├── Impls │ │ ├── DHash │ │ │ ├── ImageHashCalculatorSnapshotsComparator+ComparisonContext.swift │ │ │ ├── ImageHashCalculatorSnapshotsComparator+ComparisonError.swift │ │ │ ├── ImageHashCalculatorSnapshotsComparator+HashDifference.swift │ │ │ ├── ImageHashCalculatorSnapshotsComparator+ImagesForHashing.swift │ │ │ ├── ImageHashCalculatorSnapshotsComparator+ImagesForHashingProvider.swift │ │ │ └── ImageHashCalculatorSnapshotsComparator.swift │ │ └── PerPixel │ │ │ ├── ByteOrder.swift │ │ │ └── PerPixelSnapshotsComparator.swift │ ├── Models │ │ ├── SnapshotsComparisonResult.swift │ │ └── SnapshotsDifferenceDescription │ │ │ ├── LazySnapshotsDifferenceDescription.swift │ │ │ └── SnapshotsDifferenceDescription.swift │ ├── SnapshotsComparator.swift │ └── SnapshotsDifferenceAttachmentGenerator │ │ ├── SnapshotsDifferenceAttachmentGenerator.swift │ │ └── SnapshotsDifferenceAttachmentGeneratorImpl.swift │ └── ViewHierarchyProvider │ └── IpcViewHierarchyProvider.swift ├── Helper ├── MixboxHelper.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── MixboxHelper.xcworkspace │ └── contents.xcworkspacedata ├── MixboxHelper │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── menu-icon-colored.imageset │ │ │ ├── Contents.json │ │ │ └── menu-icon-colored.png │ │ └── menu-icon-grayscale.imageset │ │ │ ├── Contents.json │ │ │ └── menu-icon-grayscale.png │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── MixboxHelper.entitlements │ └── ViewController.swift ├── MixboxHelperTests │ └── Info.plist ├── MixboxHelperUITests │ └── Info.plist ├── Podfile └── Podfile.lock ├── LICENSE ├── Makefile ├── Mixbox.podspec ├── MixboxAnyCodable.podspec ├── MixboxBlack.podspec ├── MixboxBuiltinDi.podspec ├── MixboxBuiltinIpc.podspec ├── MixboxCocoaImageHashing.podspec ├── MixboxDi.podspec ├── MixboxFakeSettingsAppMain.podspec ├── MixboxFoundation.podspec ├── MixboxGenerators.podspec ├── MixboxGray.podspec ├── MixboxInAppServices.podspec ├── MixboxIoKit.podspec ├── MixboxIpc.podspec ├── MixboxIpcCommon.podspec ├── MixboxIpcSbtuiClient.podspec ├── MixboxIpcSbtuiHost.podspec ├── MixboxLinkXCTAutomationSupport.podspec ├── MixboxMocksGeneration.podspec ├── MixboxMocksRuntime.podspec ├── MixboxReflection.podspec ├── MixboxSBTUITestTunnelClient.podspec ├── MixboxSBTUITestTunnelCommon.podspec ├── MixboxSBTUITestTunnelServer.podspec ├── MixboxStubbing.podspec ├── MixboxTestability.podspec ├── MixboxTestsFoundation.podspec ├── MixboxUiKit.podspec ├── MixboxUiTestsFoundation.podspec ├── MocksGenerator └── Sources │ └── MixboxMocksGenerator │ └── main.swift ├── Package.resolved ├── Package.swift ├── Package.template.swift ├── PackageGenerator.swift ├── README.md ├── Tests ├── AllTestsShared │ ├── AllTestsSharedBridgingHeader.h │ ├── CGImage+Stub.swift │ ├── Cuckoo │ │ └── CuckooMatchers.swift │ ├── TestCase+AssertThrows.swift │ ├── TestCase │ │ ├── BaseTestCase+AssertLogsAndFailures.swift │ │ ├── BaseTestCase+Logging.swift │ │ ├── BaseTestCase+ResolveFunctions.swift │ │ ├── BaseTestCase+ValuesByIosVersion.swift │ │ ├── BaseTestCase.swift │ │ ├── Lifecycle │ │ │ └── LogEnvironmentSetUpAction.swift │ │ ├── Singletons │ │ │ └── Singletons+StepLogger.swift │ │ ├── TestCaseDependencies.swift │ │ └── TestStateRecycling │ │ │ └── TestStateRecycling.swift │ ├── TestType.swift │ ├── TestingFails │ │ ├── Combined │ │ │ ├── LogsAndFailures.swift │ │ │ └── Matchers │ │ │ │ └── LogsAndFailuresMatcherBuilder.swift │ │ ├── Failures │ │ │ ├── FailsHereFunctionProvider.swift │ │ │ ├── FailureGatherer.swift │ │ │ ├── GatherFailuresResult.swift │ │ │ ├── TestCanNotBeContinuedException.swift │ │ │ └── XcTestFailure.swift │ │ ├── Logs │ │ │ ├── Matchers │ │ │ │ ├── AttachmentMatcherBuilder.swift │ │ │ │ ├── StepLogMatcherBuilder.swift │ │ │ │ └── XcTestFailureMatcherBuilder.swift │ │ │ ├── RecordableStepLogger.swift │ │ │ ├── RecordingStepLoggerImpl.swift │ │ │ ├── StartedStepLoggerRecording.swift │ │ │ └── StepLoggerRecordingStarter.swift │ │ └── UninterceptableErrorTracker │ │ │ ├── UninterceptableError.swift │ │ │ ├── UninterceptableErrorRecorder.swift │ │ │ ├── UninterceptableErrorTracker.swift │ │ │ └── UninterceptableErrorTrackerImpl.swift │ ├── UIColor+RGB.swift │ ├── UIImage+Stub.swift │ └── ValuesByIosVersion │ │ ├── ValueStartingFromGivenIosVersion.swift │ │ ├── ValuesByIosVersion.swift │ │ ├── ValuesByIosVersionInFinalState.swift │ │ ├── ValuesByIosVersionInInitialState.swift │ │ └── ValuesByIosVersionInIntermediateState.swift ├── AppAndTestsShared │ └── Media.xcassets │ │ ├── Contents.json │ │ ├── eva_icons │ │ ├── Contents.json │ │ ├── fill │ │ │ ├── Contents.json │ │ │ ├── activity.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── activity.svg │ │ │ ├── alert-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── alert-circle.svg │ │ │ ├── alert-triangle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── alert-triangle.svg │ │ │ ├── archive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── archive.svg │ │ │ ├── arrow-back.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-back.svg │ │ │ ├── arrow-circle-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-circle-up.svg │ │ │ ├── arrow-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-down.svg │ │ │ ├── arrow-downward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-downward.svg │ │ │ ├── arrow-forward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-forward.svg │ │ │ ├── arrow-ios-back.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-ios-back.svg │ │ │ ├── arrow-ios-downward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-ios-downward.svg │ │ │ ├── arrow-ios-forward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-ios-forward.svg │ │ │ ├── arrow-ios-upward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-ios-upward.svg │ │ │ ├── arrow-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-left.svg │ │ │ ├── arrow-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-right.svg │ │ │ ├── arrow-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-up.svg │ │ │ ├── arrow-upward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow-upward.svg │ │ │ ├── arrowhead-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowhead-down.svg │ │ │ ├── arrowhead-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowhead-left.svg │ │ │ ├── arrowhead-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowhead-right.svg │ │ │ ├── arrowhead-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowhead-up.svg │ │ │ ├── at.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── at.svg │ │ │ ├── attach-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── attach-2.svg │ │ │ ├── attach.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── attach.svg │ │ │ ├── award.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── award.svg │ │ │ ├── backspace.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── backspace.svg │ │ │ ├── bar-chart-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bar-chart-2.svg │ │ │ ├── bar-chart.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bar-chart.svg │ │ │ ├── battery.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── battery.svg │ │ │ ├── behance.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── behance.svg │ │ │ ├── bell-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bell-off.svg │ │ │ ├── bell.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bell.svg │ │ │ ├── bluetooth.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bluetooth.svg │ │ │ ├── book-open.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── book-open.svg │ │ │ ├── book.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── book.svg │ │ │ ├── bookmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmark.svg │ │ │ ├── briefcase.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── briefcase.svg │ │ │ ├── browser.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── browser.svg │ │ │ ├── brush.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── brush.svg │ │ │ ├── bulb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bulb.svg │ │ │ ├── calendar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── calendar.svg │ │ │ ├── camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── camera.svg │ │ │ ├── car.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── car.svg │ │ │ ├── cast.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cast.svg │ │ │ ├── charging.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── charging.svg │ │ │ ├── checkmark-circle-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark-circle-2.svg │ │ │ ├── checkmark-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark-circle.svg │ │ │ ├── checkmark-square-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark-square-2.svg │ │ │ ├── checkmark-square.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark-square.svg │ │ │ ├── checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark.svg │ │ │ ├── chevron-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevron-down.svg │ │ │ ├── chevron-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevron-left.svg │ │ │ ├── chevron-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevron-right.svg │ │ │ ├── chevron-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevron-up.svg │ │ │ ├── clipboard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── clipboard.svg │ │ │ ├── clock.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── clock.svg │ │ │ ├── close-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── close-circle.svg │ │ │ ├── close-square.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── close-square.svg │ │ │ ├── close.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── close.svg │ │ │ ├── cloud-download.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cloud-download.svg │ │ │ ├── cloud-upload.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cloud-upload.svg │ │ │ ├── code-download.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── code-download.svg │ │ │ ├── code.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── code.svg │ │ │ ├── collapse.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── collapse.svg │ │ │ ├── color-palette.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── color-palette.svg │ │ │ ├── color-picker.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── color-picker.svg │ │ │ ├── compass.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── compass.svg │ │ │ ├── copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── copy.svg │ │ │ ├── corner-down-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-down-left.svg │ │ │ ├── corner-down-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-down-right.svg │ │ │ ├── corner-left-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-left-down.svg │ │ │ ├── corner-left-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-left-up.svg │ │ │ ├── corner-right-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-right-down.svg │ │ │ ├── corner-right-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-right-up.svg │ │ │ ├── corner-up-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-up-left.svg │ │ │ ├── corner-up-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── corner-up-right.svg │ │ │ ├── credit-card.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── credit-card.svg │ │ │ ├── crop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── crop.svg │ │ │ ├── cube.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cube.svg │ │ │ ├── diagonal-arrow-left-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── diagonal-arrow-left-down.svg │ │ │ ├── diagonal-arrow-left-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── diagonal-arrow-left-up.svg │ │ │ ├── diagonal-arrow-right-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── diagonal-arrow-right-down.svg │ │ │ ├── diagonal-arrow-right-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── diagonal-arrow-right-up.svg │ │ │ ├── done-all.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── done-all.svg │ │ │ ├── download.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── download.svg │ │ │ ├── droplet-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── droplet-off.svg │ │ │ ├── droplet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── droplet.svg │ │ │ ├── edit-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── edit-2.svg │ │ │ ├── edit.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── edit.svg │ │ │ ├── email.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── email.svg │ │ │ ├── expand.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── expand.svg │ │ │ ├── external-link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── external-link.svg │ │ │ ├── eye-off-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eye-off-2.svg │ │ │ ├── eye-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eye-off.svg │ │ │ ├── eye.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eye.svg │ │ │ ├── facebook.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── facebook.svg │ │ │ ├── file-add.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── file-add.svg │ │ │ ├── file-remove.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── file-remove.svg │ │ │ ├── file-text.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── file-text.svg │ │ │ ├── file.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── file.svg │ │ │ ├── film.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── film.svg │ │ │ ├── flag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── flag.svg │ │ │ ├── flash-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── flash-off.svg │ │ │ ├── flash.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── flash.svg │ │ │ ├── flip-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── flip-2.svg │ │ │ ├── flip.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── flip.svg │ │ │ ├── folder-add.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── folder-add.svg │ │ │ ├── folder-remove.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── folder-remove.svg │ │ │ ├── folder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── folder.svg │ │ │ ├── funnel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── funnel.svg │ │ │ ├── gift.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gift.svg │ │ │ ├── github.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── github.svg │ │ │ ├── globe-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── globe-2.svg │ │ │ ├── globe-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── globe-3.svg │ │ │ ├── globe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── globe.svg │ │ │ ├── google.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── google.svg │ │ │ ├── grid.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── grid.svg │ │ │ ├── hard-drive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hard-drive.svg │ │ │ ├── hash.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hash.svg │ │ │ ├── headphones.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── headphones.svg │ │ │ ├── heart.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── heart.svg │ │ │ ├── home.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home.svg │ │ │ ├── image-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-2.svg │ │ │ ├── image.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image.svg │ │ │ ├── inbox.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── inbox.svg │ │ │ ├── info.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── info.svg │ │ │ ├── keypad.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── keypad.svg │ │ │ ├── layers.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── layers.svg │ │ │ ├── layout.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── layout.svg │ │ │ ├── link-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── link-2.svg │ │ │ ├── link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── link.svg │ │ │ ├── linkedin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── linkedin.svg │ │ │ ├── list.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── list.svg │ │ │ ├── lock.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lock.svg │ │ │ ├── log-in.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── log-in.svg │ │ │ ├── log-out.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── log-out.svg │ │ │ ├── map.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── map.svg │ │ │ ├── maximize.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── maximize.svg │ │ │ ├── menu-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── menu-2.svg │ │ │ ├── menu-arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── menu-arrow.svg │ │ │ ├── menu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── menu.svg │ │ │ ├── message-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── message-circle.svg │ │ │ ├── message-square.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── message-square.svg │ │ │ ├── mic-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mic-off.svg │ │ │ ├── mic.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mic.svg │ │ │ ├── minimize.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── minimize.svg │ │ │ ├── minus-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── minus-circle.svg │ │ │ ├── minus-square.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── minus-square.svg │ │ │ ├── minus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── minus.svg │ │ │ ├── monitor.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── monitor.svg │ │ │ ├── moon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── moon.svg │ │ │ ├── more-horizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── more-horizontal.svg │ │ │ ├── more-vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── more-vertical.svg │ │ │ ├── move.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── move.svg │ │ │ ├── music.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── music.svg │ │ │ ├── navigation-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── navigation-2.svg │ │ │ ├── navigation.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── navigation.svg │ │ │ ├── npm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── npm.svg │ │ │ ├── options-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── options-2.svg │ │ │ ├── options.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── options.svg │ │ │ ├── pantone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pantone.svg │ │ │ ├── paper-plane.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── paper-plane.svg │ │ │ ├── pause-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-circle.svg │ │ │ ├── people.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── people.svg │ │ │ ├── percent.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── percent.svg │ │ │ ├── person-add.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── person-add.svg │ │ │ ├── person-delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── person-delete.svg │ │ │ ├── person-done.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── person-done.svg │ │ │ ├── person-remove.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── person-remove.svg │ │ │ ├── person.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── person.svg │ │ │ ├── phone-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── phone-call.svg │ │ │ ├── phone-missed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── phone-missed.svg │ │ │ ├── phone-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── phone-off.svg │ │ │ ├── phone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── phone.svg │ │ │ ├── pie-chart-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pie-chart-2.svg │ │ │ ├── pie-chart.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pie-chart.svg │ │ │ ├── pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pin.svg │ │ │ ├── play-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── play-circle.svg │ │ │ ├── plus-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── plus-circle.svg │ │ │ ├── plus-square.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── plus-square.svg │ │ │ ├── plus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── plus.svg │ │ │ ├── power.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── power.svg │ │ │ ├── pricetags.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pricetags.svg │ │ │ ├── printer.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── printer.svg │ │ │ ├── question-mark-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── question-mark-circle.svg │ │ │ ├── question-mark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── question-mark.svg │ │ │ ├── radio-button-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radio-button-off.svg │ │ │ ├── radio-button-on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radio-button-on.svg │ │ │ ├── radio.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radio.svg │ │ │ ├── recording.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── recording.svg │ │ │ ├── refresh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── refresh.svg │ │ │ ├── repeat.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── repeat.svg │ │ │ ├── rewind-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rewind-left.svg │ │ │ ├── rewind-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rewind-right.svg │ │ │ ├── save.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── save.svg │ │ │ ├── scissors.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── scissors.svg │ │ │ ├── search.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── search.svg │ │ │ ├── settings-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settings-2.svg │ │ │ ├── settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settings.svg │ │ │ ├── shake.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shake.svg │ │ │ ├── share.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── share.svg │ │ │ ├── shield-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shield-off.svg │ │ │ ├── shield.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shield.svg │ │ │ ├── shopping-bag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shopping-bag.svg │ │ │ ├── shopping-cart.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shopping-cart.svg │ │ │ ├── shuffle-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shuffle-2.svg │ │ │ ├── shuffle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shuffle.svg │ │ │ ├── skip-back.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── skip-back.svg │ │ │ ├── skip-forward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── skip-forward.svg │ │ │ ├── slash.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── slash.svg │ │ │ ├── smartphone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── smartphone.svg │ │ │ ├── smiling-face.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── smiling-face.svg │ │ │ ├── speaker.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── speaker.svg │ │ │ ├── square.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── square.svg │ │ │ ├── star.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── star.svg │ │ │ ├── stop-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stop-circle.svg │ │ │ ├── sun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sun.svg │ │ │ ├── swap.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── swap.svg │ │ │ ├── sync.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sync.svg │ │ │ ├── text.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── text.svg │ │ │ ├── thermometer-minus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── thermometer-minus.svg │ │ │ ├── thermometer-plus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── thermometer-plus.svg │ │ │ ├── thermometer.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── thermometer.svg │ │ │ ├── toggle-left.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── toggle-left.svg │ │ │ ├── toggle-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── toggle-right.svg │ │ │ ├── trash-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trash-2.svg │ │ │ ├── trash.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trash.svg │ │ │ ├── trending-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trending-down.svg │ │ │ ├── trending-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trending-up.svg │ │ │ ├── tv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tv.svg │ │ │ ├── twitter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── twitter.svg │ │ │ ├── umbrella.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── umbrella.svg │ │ │ ├── undo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── undo.svg │ │ │ ├── unlock.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── unlock.svg │ │ │ ├── upload.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── upload.svg │ │ │ ├── video-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── video-off.svg │ │ │ ├── video.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── video.svg │ │ │ ├── volume-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── volume-down.svg │ │ │ ├── volume-mute.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── volume-mute.svg │ │ │ ├── volume-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── volume-off.svg │ │ │ ├── volume-up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── volume-up.svg │ │ │ ├── wifi-off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wifi-off.svg │ │ │ └── wifi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wifi.svg │ │ └── outline │ │ │ ├── Contents.json │ │ │ ├── activity-outline.imageset │ │ │ ├── Contents.json │ │ │ └── activity-outline.svg │ │ │ ├── alert-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── alert-circle-outline.svg │ │ │ ├── alert-triangle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── alert-triangle-outline.svg │ │ │ ├── archive-outline.imageset │ │ │ ├── Contents.json │ │ │ └── archive-outline.svg │ │ │ ├── arrow-back-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-back-outline.svg │ │ │ ├── arrow-circle-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-circle-down-outline.svg │ │ │ ├── arrow-circle-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-circle-left-outline.svg │ │ │ ├── arrow-circle-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-circle-right-outline.svg │ │ │ ├── arrow-circle-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-circle-up-outline.svg │ │ │ ├── arrow-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-down-outline.svg │ │ │ ├── arrow-downward-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-downward-outline.svg │ │ │ ├── arrow-forward-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-forward-outline.svg │ │ │ ├── arrow-ios-back-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-ios-back-outline.svg │ │ │ ├── arrow-ios-downward-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-ios-downward-outline.svg │ │ │ ├── arrow-ios-forward-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-ios-forward-outline.svg │ │ │ ├── arrow-ios-upward-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-ios-upward-outline.svg │ │ │ ├── arrow-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-left-outline.svg │ │ │ ├── arrow-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-right-outline.svg │ │ │ ├── arrow-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-up-outline.svg │ │ │ ├── arrow-upward-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-upward-outline.svg │ │ │ ├── arrowhead-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrowhead-down-outline.svg │ │ │ ├── arrowhead-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrowhead-left-outline.svg │ │ │ ├── arrowhead-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrowhead-right-outline.svg │ │ │ ├── arrowhead-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── arrowhead-up-outline.svg │ │ │ ├── at-outline.imageset │ │ │ ├── Contents.json │ │ │ └── at-outline.svg │ │ │ ├── attach-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── attach-2-outline.svg │ │ │ ├── attach-outline.imageset │ │ │ ├── Contents.json │ │ │ └── attach-outline.svg │ │ │ ├── award-outline.imageset │ │ │ ├── Contents.json │ │ │ └── award-outline.svg │ │ │ ├── backspace-outline.imageset │ │ │ ├── Contents.json │ │ │ └── backspace-outline.svg │ │ │ ├── bar-chart-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── bar-chart-2-outline.svg │ │ │ ├── bar-chart-outline.imageset │ │ │ ├── Contents.json │ │ │ └── bar-chart-outline.svg │ │ │ ├── battery-outline.imageset │ │ │ ├── Contents.json │ │ │ └── battery-outline.svg │ │ │ ├── behance-outline.imageset │ │ │ ├── Contents.json │ │ │ └── behance-outline.svg │ │ │ ├── bell-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── bell-off-outline.svg │ │ │ ├── bell-outline.imageset │ │ │ ├── Contents.json │ │ │ └── bell-outline.svg │ │ │ ├── bluetooth-outline.imageset │ │ │ ├── Contents.json │ │ │ └── bluetooth-outline.svg │ │ │ ├── book-open-outline.imageset │ │ │ ├── Contents.json │ │ │ └── book-open-outline.svg │ │ │ ├── book-outline.imageset │ │ │ ├── Contents.json │ │ │ └── book-outline.svg │ │ │ ├── bookmark-outline.imageset │ │ │ ├── Contents.json │ │ │ └── bookmark-outline.svg │ │ │ ├── briefcase-outline.imageset │ │ │ ├── Contents.json │ │ │ └── briefcase-outline.svg │ │ │ ├── browser-outline.imageset │ │ │ ├── Contents.json │ │ │ └── browser-outline.svg │ │ │ ├── brush-outline.imageset │ │ │ ├── Contents.json │ │ │ └── brush-outline.svg │ │ │ ├── bulb-outline.imageset │ │ │ ├── Contents.json │ │ │ └── bulb-outline.svg │ │ │ ├── calendar-outline.imageset │ │ │ ├── Contents.json │ │ │ └── calendar-outline.svg │ │ │ ├── camera-outline.imageset │ │ │ ├── Contents.json │ │ │ └── camera-outline.svg │ │ │ ├── car-outline.imageset │ │ │ ├── Contents.json │ │ │ └── car-outline.svg │ │ │ ├── cast-outline.imageset │ │ │ ├── Contents.json │ │ │ └── cast-outline.svg │ │ │ ├── charging-outline.imageset │ │ │ ├── Contents.json │ │ │ └── charging-outline.svg │ │ │ ├── checkmark-circle-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark-circle-2-outline.svg │ │ │ ├── checkmark-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark-circle-outline.svg │ │ │ ├── checkmark-outline.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark-outline.svg │ │ │ ├── checkmark-square-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark-square-2-outline.svg │ │ │ ├── checkmark-square-outline.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark-square-outline.svg │ │ │ ├── chevron-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-down-outline.svg │ │ │ ├── chevron-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-left-outline.svg │ │ │ ├── chevron-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-right-outline.svg │ │ │ ├── chevron-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-up-outline.svg │ │ │ ├── clipboard-outline.imageset │ │ │ ├── Contents.json │ │ │ └── clipboard-outline.svg │ │ │ ├── clock-outline.imageset │ │ │ ├── Contents.json │ │ │ └── clock-outline.svg │ │ │ ├── close-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── close-circle-outline.svg │ │ │ ├── close-outline.imageset │ │ │ ├── Contents.json │ │ │ └── close-outline.svg │ │ │ ├── close-square-outline.imageset │ │ │ ├── Contents.json │ │ │ └── close-square-outline.svg │ │ │ ├── cloud-download-outline.imageset │ │ │ ├── Contents.json │ │ │ └── cloud-download-outline.svg │ │ │ ├── cloud-upload-outline.imageset │ │ │ ├── Contents.json │ │ │ └── cloud-upload-outline.svg │ │ │ ├── code-download-outline.imageset │ │ │ ├── Contents.json │ │ │ └── code-download-outline.svg │ │ │ ├── code-outline.imageset │ │ │ ├── Contents.json │ │ │ └── code-outline.svg │ │ │ ├── collapse-outline.imageset │ │ │ ├── Contents.json │ │ │ └── collapse-outline.svg │ │ │ ├── color-palette-outline.imageset │ │ │ ├── Contents.json │ │ │ └── color-palette-outline.svg │ │ │ ├── color-picker-outline.imageset │ │ │ ├── Contents.json │ │ │ └── color-picker-outline.svg │ │ │ ├── compass-outline.imageset │ │ │ ├── Contents.json │ │ │ └── compass-outline.svg │ │ │ ├── copy-outline.imageset │ │ │ ├── Contents.json │ │ │ └── copy-outline.svg │ │ │ ├── corner-down-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-down-left-outline.svg │ │ │ ├── corner-down-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-down-right-outline.svg │ │ │ ├── corner-left-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-left-down-outline.svg │ │ │ ├── corner-left-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-left-up-outline.svg │ │ │ ├── corner-right-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-right-down-outline.svg │ │ │ ├── corner-right-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-right-up-outline.svg │ │ │ ├── corner-up-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-up-left-outline.svg │ │ │ ├── corner-up-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── corner-up-right-outline.svg │ │ │ ├── credit-card-outline.imageset │ │ │ ├── Contents.json │ │ │ └── credit-card-outline.svg │ │ │ ├── crop-outline.imageset │ │ │ ├── Contents.json │ │ │ └── crop-outline.svg │ │ │ ├── cube-outline.imageset │ │ │ ├── Contents.json │ │ │ └── cube-outline.svg │ │ │ ├── diagonal-arrow-left-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── diagonal-arrow-left-down-outline.svg │ │ │ ├── diagonal-arrow-left-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── diagonal-arrow-left-up-outline.svg │ │ │ ├── diagonal-arrow-right-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── diagonal-arrow-right-down-outline.svg │ │ │ ├── diagonal-arrow-right-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── diagonal-arrow-right-up-outline.svg │ │ │ ├── done-all-outline.imageset │ │ │ ├── Contents.json │ │ │ └── done-all-outline.svg │ │ │ ├── download-outline.imageset │ │ │ ├── Contents.json │ │ │ └── download-outline.svg │ │ │ ├── droplet-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── droplet-off-outline.svg │ │ │ ├── droplet-outline.imageset │ │ │ ├── Contents.json │ │ │ └── droplet-outline.svg │ │ │ ├── edit-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── edit-2-outline.svg │ │ │ ├── edit-outline.imageset │ │ │ ├── Contents.json │ │ │ └── edit-outline.svg │ │ │ ├── email-outline.imageset │ │ │ ├── Contents.json │ │ │ └── email-outline.svg │ │ │ ├── expand-outline.imageset │ │ │ ├── Contents.json │ │ │ └── expand-outline.svg │ │ │ ├── external-link-outline.imageset │ │ │ ├── Contents.json │ │ │ └── external-link-outline.svg │ │ │ ├── eye-off-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── eye-off-2-outline.svg │ │ │ ├── eye-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── eye-off-outline.svg │ │ │ ├── eye-outline.imageset │ │ │ ├── Contents.json │ │ │ └── eye-outline.svg │ │ │ ├── facebook-outline.imageset │ │ │ ├── Contents.json │ │ │ └── facebook-outline.svg │ │ │ ├── file-add-outline.imageset │ │ │ ├── Contents.json │ │ │ └── file-add-outline.svg │ │ │ ├── file-outline.imageset │ │ │ ├── Contents.json │ │ │ └── file-outline.svg │ │ │ ├── file-remove-outline.imageset │ │ │ ├── Contents.json │ │ │ └── file-remove-outline.svg │ │ │ ├── file-text-outline.imageset │ │ │ ├── Contents.json │ │ │ └── file-text-outline.svg │ │ │ ├── film-outline.imageset │ │ │ ├── Contents.json │ │ │ └── film-outline.svg │ │ │ ├── flag-outline.imageset │ │ │ ├── Contents.json │ │ │ └── flag-outline.svg │ │ │ ├── flash-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── flash-off-outline.svg │ │ │ ├── flash-outline.imageset │ │ │ ├── Contents.json │ │ │ └── flash-outline.svg │ │ │ ├── flip-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── flip-2-outline.svg │ │ │ ├── flip-outline.imageset │ │ │ ├── Contents.json │ │ │ └── flip-outline.svg │ │ │ ├── folder-add-outline.imageset │ │ │ ├── Contents.json │ │ │ └── folder-add-outline.svg │ │ │ ├── folder-outline.imageset │ │ │ ├── Contents.json │ │ │ └── folder-outline.svg │ │ │ ├── folder-remove-outline.imageset │ │ │ ├── Contents.json │ │ │ └── folder-remove-outline.svg │ │ │ ├── funnel-outline.imageset │ │ │ ├── Contents.json │ │ │ └── funnel-outline.svg │ │ │ ├── gift-outline.imageset │ │ │ ├── Contents.json │ │ │ └── gift-outline.svg │ │ │ ├── github-outline.imageset │ │ │ ├── Contents.json │ │ │ └── github-outline.svg │ │ │ ├── globe-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── globe-2-outline.svg │ │ │ ├── globe-outline.imageset │ │ │ ├── Contents.json │ │ │ └── globe-outline.svg │ │ │ ├── google-outline.imageset │ │ │ ├── Contents.json │ │ │ └── google-outline.svg │ │ │ ├── grid-outline.imageset │ │ │ ├── Contents.json │ │ │ └── grid-outline.svg │ │ │ ├── hard-drive-outline.imageset │ │ │ ├── Contents.json │ │ │ └── hard-drive-outline.svg │ │ │ ├── hash-outline.imageset │ │ │ ├── Contents.json │ │ │ └── hash-outline.svg │ │ │ ├── headphones-outline.imageset │ │ │ ├── Contents.json │ │ │ └── headphones-outline.svg │ │ │ ├── heart-outline.imageset │ │ │ ├── Contents.json │ │ │ └── heart-outline.svg │ │ │ ├── home-outline.imageset │ │ │ ├── Contents.json │ │ │ └── home-outline.svg │ │ │ ├── image-outline.imageset │ │ │ ├── Contents.json │ │ │ └── image-outline.svg │ │ │ ├── inbox-outline.imageset │ │ │ ├── Contents.json │ │ │ └── inbox-outline.svg │ │ │ ├── info-outline.imageset │ │ │ ├── Contents.json │ │ │ └── info-outline.svg │ │ │ ├── keypad-outline.imageset │ │ │ ├── Contents.json │ │ │ └── keypad-outline.svg │ │ │ ├── layers-outline.imageset │ │ │ ├── Contents.json │ │ │ └── layers-outline.svg │ │ │ ├── layout-outline.imageset │ │ │ ├── Contents.json │ │ │ └── layout-outline.svg │ │ │ ├── link-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── link-2-outline.svg │ │ │ ├── link-outline.imageset │ │ │ ├── Contents.json │ │ │ └── link-outline.svg │ │ │ ├── linkedin-outline.imageset │ │ │ ├── Contents.json │ │ │ └── linkedin-outline.svg │ │ │ ├── list-outline.imageset │ │ │ ├── Contents.json │ │ │ └── list-outline.svg │ │ │ ├── loader-outline.imageset │ │ │ ├── Contents.json │ │ │ └── loader-outline.svg │ │ │ ├── lock-outline.imageset │ │ │ ├── Contents.json │ │ │ └── lock-outline.svg │ │ │ ├── log-in-outline.imageset │ │ │ ├── Contents.json │ │ │ └── log-in-outline.svg │ │ │ ├── log-out-outline.imageset │ │ │ ├── Contents.json │ │ │ └── log-out-outline.svg │ │ │ ├── map-outline.imageset │ │ │ ├── Contents.json │ │ │ └── map-outline.svg │ │ │ ├── maximize-outline.imageset │ │ │ ├── Contents.json │ │ │ └── maximize-outline.svg │ │ │ ├── menu-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── menu-2-outline.svg │ │ │ ├── menu-arrow-outline.imageset │ │ │ ├── Contents.json │ │ │ └── menu-arrow-outline.svg │ │ │ ├── menu-outline.imageset │ │ │ ├── Contents.json │ │ │ └── menu-outline.svg │ │ │ ├── message-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── message-circle-outline.svg │ │ │ ├── message-square-outline.imageset │ │ │ ├── Contents.json │ │ │ └── message-square-outline.svg │ │ │ ├── mic-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── mic-off-outline.svg │ │ │ ├── mic-outline.imageset │ │ │ ├── Contents.json │ │ │ └── mic-outline.svg │ │ │ ├── minimize-outline.imageset │ │ │ ├── Contents.json │ │ │ └── minimize-outline.svg │ │ │ ├── minus-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── minus-circle-outline.svg │ │ │ ├── minus-outline.imageset │ │ │ ├── Contents.json │ │ │ └── minus-outline.svg │ │ │ ├── minus-square-outline.imageset │ │ │ ├── Contents.json │ │ │ └── minus-square-outline.svg │ │ │ ├── monitor-outline.imageset │ │ │ ├── Contents.json │ │ │ └── monitor-outline.svg │ │ │ ├── moon-outline.imageset │ │ │ ├── Contents.json │ │ │ └── moon-outline.svg │ │ │ ├── more-horizontal-outline.imageset │ │ │ ├── Contents.json │ │ │ └── more-horizontal-outline.svg │ │ │ ├── more-vertical-outline.imageset │ │ │ ├── Contents.json │ │ │ └── more-vertical-outline.svg │ │ │ ├── move-outline.imageset │ │ │ ├── Contents.json │ │ │ └── move-outline.svg │ │ │ ├── music-outline.imageset │ │ │ ├── Contents.json │ │ │ └── music-outline.svg │ │ │ ├── navigation-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── navigation-2-outline.svg │ │ │ ├── navigation-outline.imageset │ │ │ ├── Contents.json │ │ │ └── navigation-outline.svg │ │ │ ├── npm-outline.imageset │ │ │ ├── Contents.json │ │ │ └── npm-outline.svg │ │ │ ├── options-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── options-2-outline.svg │ │ │ ├── options-outline.imageset │ │ │ ├── Contents.json │ │ │ └── options-outline.svg │ │ │ ├── pantone-outline.imageset │ │ │ ├── Contents.json │ │ │ └── pantone-outline.svg │ │ │ ├── paper-plane-outline.imageset │ │ │ ├── Contents.json │ │ │ └── paper-plane-outline.svg │ │ │ ├── pause-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── pause-circle-outline.svg │ │ │ ├── people-outline.imageset │ │ │ ├── Contents.json │ │ │ └── people-outline.svg │ │ │ ├── percent-outline.imageset │ │ │ ├── Contents.json │ │ │ └── percent-outline.svg │ │ │ ├── person-add-outline.imageset │ │ │ ├── Contents.json │ │ │ └── person-add-outline.svg │ │ │ ├── person-delete-outline.imageset │ │ │ ├── Contents.json │ │ │ └── person-delete-outline.svg │ │ │ ├── person-done-outline.imageset │ │ │ ├── Contents.json │ │ │ └── person-done-outline.svg │ │ │ ├── person-outline.imageset │ │ │ ├── Contents.json │ │ │ └── person-outline.svg │ │ │ ├── person-remove-outline.imageset │ │ │ ├── Contents.json │ │ │ └── person-remove-outline.svg │ │ │ ├── phone-call-outline.imageset │ │ │ ├── Contents.json │ │ │ └── phone-call-outline.svg │ │ │ ├── phone-missed-outline.imageset │ │ │ ├── Contents.json │ │ │ └── phone-missed-outline.svg │ │ │ ├── phone-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── phone-off-outline.svg │ │ │ ├── phone-outline.imageset │ │ │ ├── Contents.json │ │ │ └── phone-outline.svg │ │ │ ├── pie-chart-outline.imageset │ │ │ ├── Contents.json │ │ │ └── pie-chart-outline.svg │ │ │ ├── pin-outline.imageset │ │ │ ├── Contents.json │ │ │ └── pin-outline.svg │ │ │ ├── play-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── play-circle-outline.svg │ │ │ ├── plus-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── plus-circle-outline.svg │ │ │ ├── plus-outline.imageset │ │ │ ├── Contents.json │ │ │ └── plus-outline.svg │ │ │ ├── plus-square-outline.imageset │ │ │ ├── Contents.json │ │ │ └── plus-square-outline.svg │ │ │ ├── power-outline.imageset │ │ │ ├── Contents.json │ │ │ └── power-outline.svg │ │ │ ├── pricetags-outline.imageset │ │ │ ├── Contents.json │ │ │ └── pricetags-outline.svg │ │ │ ├── printer-outline.imageset │ │ │ ├── Contents.json │ │ │ └── printer-outline.svg │ │ │ ├── question-mark-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── question-mark-circle-outline.svg │ │ │ ├── question-mark-outline.imageset │ │ │ ├── Contents.json │ │ │ └── question-mark-outline.svg │ │ │ ├── radio-button-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── radio-button-off-outline.svg │ │ │ ├── radio-button-on-outline.imageset │ │ │ ├── Contents.json │ │ │ └── radio-button-on-outline.svg │ │ │ ├── radio-outline.imageset │ │ │ ├── Contents.json │ │ │ └── radio-outline.svg │ │ │ ├── recording-outline.imageset │ │ │ ├── Contents.json │ │ │ └── recording-outline.svg │ │ │ ├── refresh-outline.imageset │ │ │ ├── Contents.json │ │ │ └── refresh-outline.svg │ │ │ ├── repeat-outline.imageset │ │ │ ├── Contents.json │ │ │ └── repeat-outline.svg │ │ │ ├── rewind-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── rewind-left-outline.svg │ │ │ ├── rewind-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── rewind-right-outline.svg │ │ │ ├── save-outline.imageset │ │ │ ├── Contents.json │ │ │ └── save-outline.svg │ │ │ ├── scissors-outline.imageset │ │ │ ├── Contents.json │ │ │ └── scissors-outline.svg │ │ │ ├── search-outline.imageset │ │ │ ├── Contents.json │ │ │ └── search-outline.svg │ │ │ ├── settings-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── settings-2-outline.svg │ │ │ ├── settings-outline.imageset │ │ │ ├── Contents.json │ │ │ └── settings-outline.svg │ │ │ ├── shake-outline.imageset │ │ │ ├── Contents.json │ │ │ └── shake-outline.svg │ │ │ ├── share-outline.imageset │ │ │ ├── Contents.json │ │ │ └── share-outline.svg │ │ │ ├── shield-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── shield-off-outline.svg │ │ │ ├── shield-outline.imageset │ │ │ ├── Contents.json │ │ │ └── shield-outline.svg │ │ │ ├── shopping-bag-outline.imageset │ │ │ ├── Contents.json │ │ │ └── shopping-bag-outline.svg │ │ │ ├── shopping-cart-outline.imageset │ │ │ ├── Contents.json │ │ │ └── shopping-cart-outline.svg │ │ │ ├── shuffle-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── shuffle-2-outline.svg │ │ │ ├── shuffle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── shuffle-outline.svg │ │ │ ├── skip-back-outline.imageset │ │ │ ├── Contents.json │ │ │ └── skip-back-outline.svg │ │ │ ├── skip-forward-outline.imageset │ │ │ ├── Contents.json │ │ │ └── skip-forward-outline.svg │ │ │ ├── slash-outline.imageset │ │ │ ├── Contents.json │ │ │ └── slash-outline.svg │ │ │ ├── smartphone-outline.imageset │ │ │ ├── Contents.json │ │ │ └── smartphone-outline.svg │ │ │ ├── smiling-face-outline.imageset │ │ │ ├── Contents.json │ │ │ └── smiling-face-outline.svg │ │ │ ├── speaker-outline.imageset │ │ │ ├── Contents.json │ │ │ └── speaker-outline.svg │ │ │ ├── square-outline.imageset │ │ │ ├── Contents.json │ │ │ └── square-outline.svg │ │ │ ├── star-outline.imageset │ │ │ ├── Contents.json │ │ │ └── star-outline.svg │ │ │ ├── stop-circle-outline.imageset │ │ │ ├── Contents.json │ │ │ └── stop-circle-outline.svg │ │ │ ├── sun-outline.imageset │ │ │ ├── Contents.json │ │ │ └── sun-outline.svg │ │ │ ├── swap-outline.imageset │ │ │ ├── Contents.json │ │ │ └── swap-outline.svg │ │ │ ├── sync-outline.imageset │ │ │ ├── Contents.json │ │ │ └── sync-outline.svg │ │ │ ├── text-outline.imageset │ │ │ ├── Contents.json │ │ │ └── text-outline.svg │ │ │ ├── thermometer-minus-outline.imageset │ │ │ ├── Contents.json │ │ │ └── thermometer-minus-outline.svg │ │ │ ├── thermometer-outline.imageset │ │ │ ├── Contents.json │ │ │ └── thermometer-outline.svg │ │ │ ├── thermometer-plus-outline.imageset │ │ │ ├── Contents.json │ │ │ └── thermometer-plus-outline.svg │ │ │ ├── toggle-left-outline.imageset │ │ │ ├── Contents.json │ │ │ └── toggle-left-outline.svg │ │ │ ├── toggle-right-outline.imageset │ │ │ ├── Contents.json │ │ │ └── toggle-right-outline.svg │ │ │ ├── trash-2-outline.imageset │ │ │ ├── Contents.json │ │ │ └── trash-2-outline.svg │ │ │ ├── trash-outline.imageset │ │ │ ├── Contents.json │ │ │ └── trash-outline.svg │ │ │ ├── trending-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── trending-down-outline.svg │ │ │ ├── trending-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── trending-up-outline.svg │ │ │ ├── tv-outline.imageset │ │ │ ├── Contents.json │ │ │ └── tv-outline.svg │ │ │ ├── twitter-outline.imageset │ │ │ ├── Contents.json │ │ │ └── twitter-outline.svg │ │ │ ├── umbrella-outline.imageset │ │ │ ├── Contents.json │ │ │ └── umbrella-outline.svg │ │ │ ├── undo-outline.imageset │ │ │ ├── Contents.json │ │ │ └── undo-outline.svg │ │ │ ├── unlock-outline.imageset │ │ │ ├── Contents.json │ │ │ └── unlock-outline.svg │ │ │ ├── upload-outline.imageset │ │ │ ├── Contents.json │ │ │ └── upload-outline.svg │ │ │ ├── video-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── video-off-outline.svg │ │ │ ├── video-outline.imageset │ │ │ ├── Contents.json │ │ │ └── video-outline.svg │ │ │ ├── volume-down-outline.imageset │ │ │ ├── Contents.json │ │ │ └── volume-down-outline.svg │ │ │ ├── volume-mute-outline.imageset │ │ │ ├── Contents.json │ │ │ └── volume-mute-outline.svg │ │ │ ├── volume-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── volume-off-outline.svg │ │ │ ├── volume-up-outline.imageset │ │ │ ├── Contents.json │ │ │ └── volume-up-outline.svg │ │ │ ├── wifi-off-outline.imageset │ │ │ ├── Contents.json │ │ │ └── wifi-off-outline.svg │ │ │ └── wifi-outline.imageset │ │ │ ├── Contents.json │ │ │ └── wifi-outline.svg │ │ └── imagehash_cats │ │ ├── Contents.json │ │ ├── imagehash_cat_aspect.imageset │ │ ├── Contents.json │ │ └── cat_aspect.png │ │ ├── imagehash_cat_borders.imageset │ │ ├── Contents.json │ │ └── cat_borders.png │ │ ├── imagehash_cat_color.imageset │ │ ├── Contents.json │ │ └── cat_color.png │ │ ├── imagehash_cat_lots_of_text.imageset │ │ ├── Contents.json │ │ └── cat_lots_of_text.png │ │ ├── imagehash_cat_not_cat.imageset │ │ ├── Contents.json │ │ └── cat_not_cat.png │ │ ├── imagehash_cat_original.imageset │ │ ├── Contents.json │ │ └── cat.png │ │ ├── imagehash_cat_size.imageset │ │ ├── Contents.json │ │ └── cat_size.png │ │ └── imagehash_cat_text.imageset │ │ ├── Contents.json │ │ └── cat_text.png ├── AppForCheckingPureXctest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── HidEventsDebugging │ │ ├── AppForCheckingPureXctest-Bridging-Header.h │ │ ├── HidEventsTracker.swift │ │ └── PrivateApi.h │ ├── Info.plist │ ├── View.swift │ └── ViewController.swift ├── AppForCheckingPureXctestUITests │ ├── AppForCheckingPureXctestUITests.swift │ └── Info.plist ├── BlackBoxUiTests │ ├── BlackBoxUiTests-Bridging-Header.h │ ├── Info.plist │ ├── Support │ │ ├── BlackBoxTestCaseDependencies.swift │ │ ├── LaunchingApplication │ │ │ ├── BuiltinIpcLaunchableApplication.swift │ │ │ └── LaunchableApplicationProvider.swift │ │ ├── MixboxHelperPrototype │ │ │ └── MixboxHelperClient.swift │ │ └── TestCase.swift │ └── Tests │ │ ├── DifferentHierarchies │ │ ├── HierarchySourcesTests.swift │ │ └── ThirdPartyAppsTests.swift │ │ ├── FakeCells │ │ └── FakeCellsDisablingTests.swift │ │ ├── IPC │ │ ├── Echoing │ │ │ ├── BaseIpcEchoingTests.swift │ │ │ ├── IpcEchoingUsingBuiltinIpcTests.swift │ │ │ └── IpcEchoingUsingSbtuiTestTunnelTests.swift │ │ └── IpcCallbacksTests.swift │ │ ├── LaunchingApp │ │ └── LaunchingAppTests.swift │ │ ├── Network │ │ ├── Player │ │ │ ├── RecordingNetworkPlayerTests.swift │ │ │ └── Showcase │ │ │ │ ├── MoreComplexExample.recordedNetworkSession.json │ │ │ │ ├── NetworkPlayerShowcaseTests.alwaysEmpty.json │ │ │ │ ├── NetworkPlayerShowcaseTests.recordedNetworkSession.json │ │ │ │ └── NetworkPlayerShowcaseTests.swift │ │ ├── Recording │ │ │ └── NetworkRecordingTests.swift │ │ ├── Stubbing │ │ │ └── LegacyNetworkStubbingTests.swift │ │ └── Support │ │ │ └── BaseNetworkMockingTestCase.swift │ │ ├── Reports │ │ └── ApplicationCrashProducesMeaninfulErrorTests.swift │ │ ├── Scrolling │ │ ├── ScrollingSmokeTests.swift │ │ └── ScrollingTriesToMakeViewFullyVisibleTests.swift │ │ └── Tools │ │ ├── ApplicationBundleProviderTests.swift │ │ └── PhotoStubberTests.swift ├── FakeSettingsApp │ ├── Entitlements.entitlements │ ├── Info.plist │ └── main.swift ├── Frameworks │ └── TestsIpc │ │ ├── Sources │ │ ├── GlobalIpc │ │ │ ├── BidirectionalCommunication │ │ │ │ ├── BidirectionalCommunicationPingPongMethod.swift │ │ │ │ └── BidirectionalCommunicationPingPongMethodHandler.swift │ │ │ ├── Callback │ │ │ │ ├── CallbackFromApp │ │ │ │ │ └── CallbackFromAppIpcMethod.swift │ │ │ │ ├── CallbackToApp │ │ │ │ │ └── CallbackToAppIpcMethod.swift │ │ │ │ └── NestedCallbacks │ │ │ │ │ └── NestedCallbacksToAppIpcMethod.swift │ │ │ ├── Echo │ │ │ │ └── EchoIpcMethod.swift │ │ │ ├── ProcessInfo │ │ │ │ ├── IpcProcessInfo.swift │ │ │ │ └── ProcessInfoIpcMethod.swift │ │ │ └── SetScreen │ │ │ │ ├── ScreenContainerType.swift │ │ │ │ └── SetScreenIpcMethod.swift │ │ ├── SharedCode │ │ │ └── PrivateApiAccessibilityForTestAutomationInitializer.swift │ │ ├── Singletons │ │ │ ├── DebugEnvironmentProvider.swift │ │ │ ├── Singletons+PerformanceLogger.swift │ │ │ └── Singletons.swift │ │ └── ViewIpc │ │ │ ├── ActionsTestsView │ │ │ ├── ActionTestViewActionResult.swift │ │ │ ├── GetActionResultIpcMethod.swift │ │ │ └── SetViewsIpcMethod.swift │ │ │ ├── CheckTestsView │ │ │ ├── ChecksTestsViewConfiguration.swift │ │ │ └── ConfigureChecksTestsViewIpcMethod.swift │ │ │ ├── FakeCellsTestsView │ │ │ ├── FakeCellsReload │ │ │ │ ├── FakeCellsReloadIpcMethod.swift │ │ │ │ └── FakeCellsReloadType.swift │ │ │ ├── FakeCellsSubviewsInfo │ │ │ │ └── FakeCellsSubviewsInfoIpcMethod.swift │ │ │ └── FakeCellsTestsConstants.swift │ │ │ ├── Generic │ │ │ └── ResetUiIpcMethod.swift │ │ │ ├── InteractionsUseVisiblePointTestsView │ │ │ └── InteractionsUseVisiblePointTestsViewConfiguration.swift │ │ │ ├── IpcTestingView │ │ │ ├── IpcColor.swift │ │ │ ├── IpcTestingViewConfiguration.swift │ │ │ └── IpcView.swift │ │ │ ├── NavigationBarCanBeFoundTestsView │ │ │ └── NavigationBarCanBeFoundTestsViewConfiguration.swift │ │ │ ├── NetworkStubbingTestsView │ │ │ └── NetworkStubbingTestsViewSetResponseIpcMethod.swift │ │ │ ├── ScreenshotTestsView │ │ │ └── ScreenshotTestsConstants.swift │ │ │ ├── Scrolling │ │ │ ├── ScrollingSmokeTestsView │ │ │ │ └── ScrollingSmokeTestsConstants.swift │ │ │ └── ScrollingTriesToMakeViewFullyVisibleTestsView │ │ │ │ └── ScrollingTriesToMakeViewFullyVisibleTestsViewConfiguration.swift │ │ │ ├── SoftwareKeyboardTestsViewConfiguration │ │ │ └── SoftwareKeyboardTestsViewConfiguration.swift │ │ │ └── WaitingForQuiescenceTestsView │ │ │ └── WaitingForQuiescenceTestsViewConfiguration.swift │ │ └── TestsIpc.podspec ├── GrayBoxUiTests │ ├── GrayBoxUiTests-Bridging-Header.h │ ├── Info.plist │ ├── Mocks │ │ └── generate_mocks │ ├── Support │ │ └── TestCase │ │ │ ├── GrayBoxTestCaseDependencies.swift │ │ │ ├── IpcRouterHolder.swift │ │ │ └── TestCase.swift │ └── Tests │ │ ├── ElementHierarchyDescriptionProvider │ │ └── ElementHierarchyDescriptionProviderTests.swift │ │ ├── IpcTests.swift │ │ ├── KeyboardEventInjectorImplTests.swift │ │ ├── PredefinedObjcMethodsTests.swift │ │ ├── RunLoopSpinner │ │ └── RunLoopSpinnerTests.swift │ │ ├── ScreenshotTests │ │ └── GrayScreenshotTakerTests.swift │ │ ├── Stubbing │ │ ├── NetworkStubbingTestCase.swift │ │ └── NetworkStubbingTests.swift │ │ └── screenshotTestsView_screenshot.png ├── HostedAppLogicTests │ ├── HostedAppLogicTests.swift │ ├── Info.plist │ ├── Support │ │ └── HostedAppLogicTests-Bridging-Header.h │ └── TestCase.swift ├── Lint │ └── Info.plist ├── Makefile ├── OsxUnitTests │ ├── Info.plist │ └── Tests │ │ └── MixboxMockGeneration │ │ ├── MockGenerationTests.swift │ │ ├── NameCollisionAvoidanceTests.swift │ │ ├── SnippetsTests.swift │ │ ├── TypeName_TypeInstanceExpression_Tests.swift │ │ ├── TypeName_ValidClosureType_Tests.swift │ │ └── TypeName_ValidTypeName_Tests.swift ├── Podfile ├── Podfile.lock ├── Scripts │ ├── mock_generation.sh │ └── warm_up_code_generation ├── TestedApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── CustomIpc │ │ ├── Callback │ │ │ ├── CallbackFromApp │ │ │ │ └── CallbackFromAppIpcMethodHandler.swift │ │ │ ├── CallbackToApp │ │ │ │ └── CallbackToAppIpcMethodHandler.swift │ │ │ └── NestedCallbacks │ │ │ │ └── NestedCallbacksToAppIpcMethodHandler.swift │ │ ├── CustomIpcMethods.swift │ │ ├── Echo │ │ │ └── EchoIpcMethodHandler.swift │ │ ├── IpcBetweenViewAndTest │ │ │ ├── ClosureMethodHandler.swift │ │ │ ├── ViewIpc+ResetUi.swift │ │ │ └── ViewIpc.swift │ │ ├── ProcessInfo │ │ │ └── ProcessInfoIpcMethodHandler.swift │ │ └── SetScreen │ │ │ └── SetScreenIpcMethodHandler.swift │ ├── Info.plist │ ├── TestedApp-Bridging-Header.h │ ├── Testing │ │ ├── InAppServicesDependencyCollectionRegisterer.swift │ │ ├── SupportViews │ │ │ ├── CollectionView │ │ │ │ ├── CellModel.swift │ │ │ │ ├── CollectionView.swift │ │ │ │ └── SingleViewCell.swift │ │ │ ├── TapIndicatorButton.swift │ │ │ ├── TestStackScrollView.swift │ │ │ └── ViewsWithClosures │ │ │ │ ├── ButtonWithClosures.swift │ │ │ │ ├── LabelWithClosures.swift │ │ │ │ ├── README.md │ │ │ │ ├── TextFieldWithClosures.swift │ │ │ │ └── TextViewWithClosures.swift │ │ ├── ViewControllers │ │ │ ├── IntermediateBetweenTests │ │ │ │ └── IntermediateBetweenTestsViewController.swift │ │ │ └── Testing │ │ │ │ ├── InitializableWithTestingViewControllerSettings.swift │ │ │ │ ├── TestingView.swift │ │ │ │ ├── TestingViewController.swift │ │ │ │ ├── TestingViewControllerFactory.swift │ │ │ │ ├── TestingViewControllerSettings.swift │ │ │ │ ├── ViewControllerContainerType.swift │ │ │ │ └── ViewControllerContainerTypeProvider.swift │ │ └── Views │ │ │ ├── Actions │ │ │ ├── ActionsTestsView │ │ │ │ ├── ActionTestsViewViewRegistrar.swift │ │ │ │ └── ActionsTestsView.swift │ │ │ └── MovingElementTests │ │ │ │ └── MovingElementTestsView.swift │ │ │ ├── ApplicationBundleProviderTests │ │ │ └── ApplicationBundleProviderTestsView.swift │ │ │ ├── AssertingCustomValuesTests │ │ │ └── AssertingCustomValuesTestsView.swift │ │ │ ├── ChangingHierarchyTests │ │ │ └── ChangingHierarchyTestsView.swift │ │ │ ├── ChecksTests │ │ │ ├── ChecksTestsView.swift │ │ │ └── ExpandingView.swift │ │ │ ├── CrashTests │ │ │ └── CrashTestsView.swift │ │ │ ├── DummyForLaunchingUiTestsView.swift │ │ │ ├── FakeCells │ │ │ ├── FakeCellsDoNotCauseSideEffectsTests │ │ │ │ ├── FakeCellsDoNotCauseSideEffectsTestsCollectionView.swift │ │ │ │ └── FakeCellsDoNotCauseSideEffectsTestsView.swift │ │ │ ├── FakeCellsDoNotCrashAppTests │ │ │ │ ├── CellThatCrashesAtInit.swift │ │ │ │ ├── CrashingCell.swift │ │ │ │ ├── CrashingCellException.swift │ │ │ │ └── FakeCellsDoNotCrashAppTestsView.swift │ │ │ └── FakeCellsTests │ │ │ │ └── FakeCellsTestsView.swift │ │ │ ├── HierarchySourcesTests │ │ │ └── HierarchySourcesTestsView.swift │ │ │ ├── HierarchyTests │ │ │ └── HierarchyTestsView.swift │ │ │ ├── IpcTestingView │ │ │ └── IpcTestingView.swift │ │ │ ├── Keyboard │ │ │ ├── KeyboardEventInjectorImplTestsView.swift │ │ │ └── SoftwareKeyboardTestsView.swift │ │ │ ├── LocatorsTests │ │ │ └── LocatorsTestsView.swift │ │ │ ├── NavigationBarCanBeFoundTests │ │ │ ├── NavigationBarCanBeFoundTestsView+NestedViewController.swift │ │ │ └── NavigationBarCanBeFoundTestsView.swift │ │ │ ├── NetworkStubbingTests │ │ │ └── NetworkStubbingTestsView.swift │ │ │ ├── NonViewElements │ │ │ ├── NonViewElementsTestsCustomDrawingView.swift │ │ │ ├── NonViewElementsTestsMapView.swift │ │ │ └── NonViewElementsTestsWebView.swift │ │ │ ├── Performance │ │ │ └── LocatorsPerformanceTestsView.swift │ │ │ ├── Permissions │ │ │ ├── PermissionInfo │ │ │ │ ├── Impls │ │ │ │ │ ├── CameraPermissionInfo.swift │ │ │ │ │ ├── GeolocationPermissionInfo.swift │ │ │ │ │ ├── MicrophonePermissionInfo.swift │ │ │ │ │ ├── NotificationsPermissionInfo.swift │ │ │ │ │ └── PhotosPermissionInfo.swift │ │ │ │ └── Support │ │ │ │ │ ├── AvCaptureDevicePermissionInfo.swift │ │ │ │ │ └── PermissionInfo.swift │ │ │ └── PermissionsTestsView.swift │ │ │ ├── ScreenshotTests │ │ │ ├── ScreenshotDHashLabelsTestsView.swift │ │ │ └── ScreenshotTestsView.swift │ │ │ ├── Scrolling │ │ │ ├── ScrollingSmokeTests │ │ │ │ ├── ScrollingSmokeTestsCollectionView.swift │ │ │ │ ├── ScrollingSmokeTestsScrollView.swift │ │ │ │ └── ScrollingSmokeTestsView.swift │ │ │ └── ScrollingTriesToMakeViewFullyVisibleTests │ │ │ │ └── ScrollingTriesToMakeViewFullyVisibleTestsView.swift │ │ │ ├── SetTextActionWaitsForElementToGainFocusTests │ │ │ ├── DelayingFocusGainingInput.swift │ │ │ └── SetTextActionWaitsForElementToGainFocusTestsView.swift │ │ │ ├── SwiftUI │ │ │ ├── SwiftUICustomValuesTestsView.swift │ │ │ ├── SwiftUIListTestsView.swift │ │ │ ├── SwiftUINavigationBarItemTestsView.swift │ │ │ └── UIHostingView.swift │ │ │ ├── TextsTests │ │ │ └── TextTestsView.swift │ │ │ ├── Touches │ │ │ └── TouchesTestsView.swift │ │ │ ├── Visibility │ │ │ └── InteractionsUseVisiblePointTestsView │ │ │ │ └── InteractionsUseVisiblePointTestsView.swift │ │ │ └── WaitingForQuiescence │ │ │ ├── CenteredLineButtonView.swift │ │ │ ├── TrackingCAAnimationDelegate.swift │ │ │ └── WaitingForQuiescenceTestsView.swift │ ├── Utils │ │ ├── ApplicationNameProvider.swift │ │ ├── RootViewControllerManager │ │ │ ├── RootViewControllerManager.swift │ │ │ └── RootViewControllerManagerImpl.swift │ │ ├── SingleResponseWebServer.swift │ │ ├── TargetAction.swift │ │ ├── UIBarButtonItem+TargetAction.swift │ │ ├── UIView+Layout.swift │ │ └── ViewWithUtilities.swift │ └── main.m ├── Tests.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── AppForCheckingPureXctest.xcscheme │ │ ├── BlackBoxUiTests.xcscheme │ │ ├── BuildLintAndUnitTest.xcscheme │ │ ├── GrayBoxUiTests.xcscheme │ │ ├── Lint.xcscheme │ │ ├── OsxUnitTests.xcscheme │ │ ├── PodspecLinting.xcscheme │ │ └── UnitTests.xcscheme ├── Tests.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings ├── UiTestsShared │ ├── Support │ │ ├── Emcee │ │ │ └── RuntimeDump │ │ │ │ ├── TestGetter.h │ │ │ │ ├── TestGetter.m │ │ │ │ ├── TestQuery.swift │ │ │ │ ├── TestSuiteInfo.h │ │ │ │ └── TestSuiteInfo.m │ │ ├── FileSystemMocking │ │ │ ├── FileSystem │ │ │ │ ├── FileSystem.swift │ │ │ │ └── FileSystemImpl.swift │ │ │ ├── TemporaryDirectory │ │ │ │ ├── CreatedTemporaryDirectory.swift │ │ │ │ └── TemporaryDirectory.swift │ │ │ ├── TemporaryDirectoryPathProvider │ │ │ │ ├── NsTemporaryDirectoryPathProvider.swift │ │ │ │ └── TemporaryDirectoryPathProvider.swift │ │ │ └── TemporaryFile │ │ │ │ ├── CreatedTemporaryFile.swift │ │ │ │ └── TemporaryFile.swift │ │ ├── Lifecycle │ │ │ ├── MeasureableTimedActivityMetricSenderWaiterTestLifecycleManager.swift │ │ │ └── TestObservationEntryPoint.swift │ │ ├── PageObjects │ │ │ ├── CustomElements │ │ │ │ └── TapIndicatorButtonElement.swift │ │ │ ├── PageObjects.swift │ │ │ ├── PageObjects │ │ │ │ ├── ActionsTestsScreen.swift │ │ │ │ ├── CanTapKeyboardTests │ │ │ │ │ └── CanTapKeyboardTestsViewPageObject.swift │ │ │ │ ├── ChecksTestsScreen.swift │ │ │ │ ├── GenericPageObject.swift │ │ │ │ ├── HierarchyTestsViewPageObject.swift │ │ │ │ ├── InteractionsUseVisiblePointTestsViewPageObject.swift │ │ │ │ ├── IpcTestingViewPageObject.swift │ │ │ │ ├── KeyboardEventInjectorImplTestsViewPageObject.swift │ │ │ │ ├── LocatorsPerformanceTestsViewPageObject.swift │ │ │ │ ├── LocatorsTestsViewPageObject.swift │ │ │ │ ├── NavigationBarCanBeFoundTests │ │ │ │ │ └── NavigationBarCanBeFoundTestsViewPageObject.swift │ │ │ │ ├── NetworkStubbingTestsViewPageObject.swift │ │ │ │ ├── NonViewElementsTests │ │ │ │ │ ├── NonViewElementsTestsCustomDrawingViewPageObject.swift │ │ │ │ │ ├── NonViewElementsTestsMapViewPageObject.swift │ │ │ │ │ └── NonViewElementsTestsWebViewPageObject.swift │ │ │ │ ├── PermissionsTestsViewPageObject.swift │ │ │ │ ├── ScreenshotTestsViewPageObject.swift │ │ │ │ ├── Scrolling │ │ │ │ │ ├── ScrollingSmokeTestsViewPageObject.swift │ │ │ │ │ └── ScrollingTriesToMakeViewFullyVisibleTestsViewPageObject.swift │ │ │ │ ├── SetTextActionWaitsForElementToGainFocusTestsViewPageObject.swift │ │ │ │ ├── TouchesTestsViewPageObject.swift │ │ │ │ └── WaitingForQuiescenceTestsViewPageObject.swift │ │ │ └── Support │ │ │ │ ├── Apps.swift │ │ │ │ ├── BasePageObject+Extension.swift │ │ │ │ ├── MainAppScreen.swift │ │ │ │ └── OpenableScreen.swift │ │ ├── Reports │ │ │ ├── README.md │ │ │ ├── ReportingSystem │ │ │ │ ├── AsyncReportingSystem.swift │ │ │ │ ├── Domain │ │ │ │ │ ├── TestCaseReport.swift │ │ │ │ │ ├── TestMethodReport.swift │ │ │ │ │ ├── TestReportAttachment.swift │ │ │ │ │ ├── TestReportFailure.swift │ │ │ │ │ ├── TestReportStatus.swift │ │ │ │ │ └── TestStepReport.swift │ │ │ │ ├── ReportingSystem.swift │ │ │ │ └── ReportingSystems.swift │ │ │ └── ReportingTestLifecycleManager.swift │ │ ├── TestCase │ │ │ ├── BaseUiTestCase+Info.swift │ │ │ ├── BaseUiTestCase+ResetUi.swift │ │ │ ├── BaseUiTestCase+ResolveFunctions.swift │ │ │ ├── BaseUiTestCase.swift │ │ │ ├── ScreenOpener.swift │ │ │ └── UiTestCaseDependencies.swift │ │ └── Utils │ │ │ └── RedImagesProvider.swift │ └── Tests │ │ ├── FakeCells │ │ ├── FakeCellsDoNotCauseSideEffectsTests.swift │ │ ├── FakeCellsDoNotCrashAppTests.swift │ │ └── FakeCellsTests.swift │ │ ├── GettingInfoAboutUserInterfaceState │ │ ├── FindingElement │ │ │ ├── LocatorsTests.swift │ │ │ └── SituationsWhereHierarchyIsChangedOverTimeAreHandledProperlyTests.swift │ │ ├── GettingElementInfo │ │ │ ├── GettingUiKitHierarchyTests.swift │ │ │ └── TestabilityTextTests.swift │ │ └── StandardLibraryViews │ │ │ └── NavigationBarCanBeFoundTests.swift │ │ ├── Interactions │ │ ├── Actions │ │ │ ├── Common │ │ │ │ └── RunningActionsInRandomOrderTests.swift │ │ │ ├── SelfCheck │ │ │ │ └── BaseActionTestCaseTests.swift │ │ │ ├── Specific │ │ │ │ ├── ClearText │ │ │ │ │ └── ClearTextActionTests.swift │ │ │ │ ├── Press │ │ │ │ │ └── PressActionTests.swift │ │ │ │ ├── SetText │ │ │ │ │ ├── SetTestActionSetsTextProperlyTests.swift │ │ │ │ │ ├── SetTextActionCanBeRunSubsequentlyWithSameResultTests.swift │ │ │ │ │ ├── SetTextActionDoesntGainFocusIfItIsAlreadyGainedTests.swift │ │ │ │ │ ├── SetTextActionFailuresTests.swift │ │ │ │ │ ├── SetTextActionWaitsElementTests.swift │ │ │ │ │ └── SetTextActionWaitsForElementToGainFocusTests.swift │ │ │ │ ├── Swipe │ │ │ │ │ ├── SwipeActionCanBeRunFromAnyPartOfScreenTests.swift │ │ │ │ │ ├── SwipeActionCanBeRunSubsequentlyTests.swift │ │ │ │ │ ├── SwipeActionFailuresTests.swift │ │ │ │ │ ├── SwipeActionTouchesTests.swift │ │ │ │ │ └── SwipeActionWaitsTests.swift │ │ │ │ └── Tap │ │ │ │ │ ├── CanTapMovingElementTests.swift │ │ │ │ │ ├── TapActionTests.swift │ │ │ │ │ └── TapActionTouchesTests.swift │ │ │ └── Support │ │ │ │ ├── BaseActionTestCase │ │ │ │ ├── BaseActionTestCase+BasicAsserts.swift │ │ │ │ ├── BaseActionTestCase+Checks.swift │ │ │ │ ├── BaseActionTestCase+SetViews.swift │ │ │ │ └── BaseActionTestCase.swift │ │ │ │ ├── BaseTouchesTestCase │ │ │ │ ├── BaseTouchesTestCase+AllEvents.swift │ │ │ │ ├── BaseTouchesTestCase+AllTouches.swift │ │ │ │ ├── BaseTouchesTestCase+Asserts.swift │ │ │ │ ├── BaseTouchesTestCase+Coordinates.swift │ │ │ │ ├── BaseTouchesTestCase+GetEvents.swift │ │ │ │ └── BaseTouchesTestCase.swift │ │ │ │ └── Specification │ │ │ │ ├── ActionSpecification.swift │ │ │ │ ├── ActionSpecifications.swift │ │ │ │ └── AnyActionSpecification.swift │ │ └── Checks │ │ │ ├── AssertMatchesReferenceWithDhashComparatorTests.swift │ │ │ ├── AssertMatchesReferenceWithPerPixelComparatorTests.swift │ │ │ ├── AssertingCustomValuesTests.swift │ │ │ └── BasedOnBaseChecksTestCase │ │ │ ├── Base │ │ │ ├── AssertSpec.swift │ │ │ └── BaseChecksTestCase.swift │ │ │ └── Tests │ │ │ ├── ContinueAfterFailureTests.swift │ │ │ ├── DifferentChecks │ │ │ ├── AssertBecomesShorterAfterInteractionTests.swift │ │ │ ├── AssertBecomesTallerAfterInteractionTests.swift │ │ │ ├── AssertContainsTextInteractionTests.swift │ │ │ ├── AssertHasAccessibilityLabelInteractionTests.swift │ │ │ ├── AssertHasAccessibilityValueInteractionTests.swift │ │ │ ├── AssertHasTextInteractionTests.swift │ │ │ ├── AssertIsDisabledInteractionTests.swift │ │ │ ├── AssertIsDisplayedInteractionTests.swift │ │ │ ├── AssertIsEnabledInteractionTests.swift │ │ │ ├── AssertIsNotDisplayedInteractionTests.swift │ │ │ ├── AssertTextMatchesInteractionTests.swift │ │ │ ├── IsDisplayedInteractionTests.swift │ │ │ └── TextInteractionTests.swift │ │ │ └── IgnoringDefinitelyHiddenElementsTests.swift │ │ ├── Ipc │ │ └── BidirectionalIpcTests.swift │ │ ├── Keyboard │ │ └── SoftwareKeyboardTests.swift │ │ ├── NonViewElementsTests │ │ ├── NonViewElementsTests+BlackBoxOnly.swift │ │ └── NonViewElementsTests.swift │ │ ├── PageObjectMakingHelper │ │ └── PageObjectMakingHelperTests.swift │ │ ├── Performance │ │ ├── LocatorsPerformanceTests.swift │ │ └── VisibilityCheckPerformanceTests.swift │ │ ├── Permissions │ │ ├── Kinds │ │ │ ├── Camera │ │ │ │ ├── CameraApplicationPermissionSpecification.swift │ │ │ │ └── CameraApplicationPermissionTests.swift │ │ │ ├── Geolocation │ │ │ │ ├── GeolocationApplicationPermissionSpecification.swift │ │ │ │ └── GeolocationApplicationPermissionTests.swift │ │ │ ├── Microphone │ │ │ │ ├── MicrophoneApplicationPermissionSpecification.swift │ │ │ │ └── MicrophoneApplicationPermissionTests.swift │ │ │ ├── Notifications │ │ │ │ ├── NotificationsApplicationPermissionSpecification.swift │ │ │ │ └── NotificationsApplicationPermissionTests.swift │ │ │ └── Photos │ │ │ │ ├── PhotosApplicationPermissionSpecification.swift │ │ │ │ └── PhotosApplicationPermissionTests.swift │ │ └── Support │ │ │ ├── BasePermissionTestCase.swift │ │ │ └── Specification │ │ │ ├── Generic │ │ │ └── ApplicationPermissionSpecification.swift │ │ │ └── Specific │ │ │ ├── ApplicationPermissionWithAllowedDeniedNotDeterminedStateSpecification.swift │ │ │ └── ApplicationPermissionWithAllowedDeniedStateSpecification.swift │ │ ├── Reporting │ │ └── FailuresAreHighlightedInCorrectPlacesInIdeTests.swift │ │ ├── SelfCheck │ │ └── CallToSuperInPreconditionOfBaseUiTestCaseValidationTests.swift │ │ ├── SwiftUI │ │ ├── SwiftUICustomValuesTests.swift │ │ ├── SwiftUIListTests.swift │ │ └── SwiftUINavigationBarItemTests.swift │ │ ├── Visibility │ │ ├── InteractionsUseVisiblePointTests.swift │ │ └── VisibilityCheckTests.swift │ │ └── WaitingForQuiescence │ │ └── WaitingForQuiescenceTests.swift ├── UnitTests │ ├── FileLineTests.swift │ ├── Info.plist │ ├── Mocks │ │ ├── Custom │ │ │ ├── ConstantAnyGenerator.swift │ │ │ ├── ConstantRandomNumberProvider.swift │ │ │ ├── ElementMatcherBuilderFactory.swift │ │ │ ├── SequenceAnyGenerator.swift │ │ │ └── SequenceRandomNumberProvider.swift │ │ └── generate_mocks │ ├── Support │ │ ├── BaseSerializationTestCase.swift │ │ ├── TestCase.swift │ │ ├── UnitTests-Bridging-Header.h │ │ └── WhiteBoxTestCaseDependencies.swift │ └── Tests │ │ ├── MixboxBuiltinDi │ │ └── DependencyInjectionImplTests.swift │ │ ├── MixboxCocoaImageHashing │ │ ├── Assets │ │ │ ├── blur │ │ │ │ ├── blur_Chang_PermanentMidnightintheChairofJasperJohns_large.bmp │ │ │ │ ├── blur_Hhirst_BGE.bmp │ │ │ │ ├── blur_Scotland_castle_wedding.bmp │ │ │ │ ├── blur_Tower-Bridge-at-night--London--England_web.bmp │ │ │ │ ├── blur_architecture1.bmp │ │ │ │ ├── blur_architecture_2.bmp │ │ │ │ ├── blur_bamarket115.bmp │ │ │ │ ├── blur_butterflywallpaper.bmp │ │ │ │ ├── blur_damien_hirst.bmp │ │ │ │ ├── blur_damien_hirst_does_fashion_week.bmp │ │ │ │ ├── blur_damien_hirst_virgin_mother.bmp │ │ │ │ ├── blur_damienhirst.bmp │ │ │ │ ├── blur_dhirst_a3b9ddea.bmp │ │ │ │ ├── blur_diamondskull.bmp │ │ │ │ ├── blur_doodle.bmp │ │ │ │ ├── blur_england.bmp │ │ │ │ ├── blur_englandpath.bmp │ │ │ │ ├── blur_jasper_johns.bmp │ │ │ │ ├── blur_johns_portrait_380x311.bmp │ │ │ │ ├── blur_latrobe.bmp │ │ │ │ ├── blur_targetjasperjohns.bmp │ │ │ │ ├── blur_uk-golf-scotland.bmp │ │ │ │ └── blur_wallacestevens.bmp │ │ │ ├── compr │ │ │ │ ├── compr_Chang_PermanentMidnightintheChairofJasperJohns_large.jpg │ │ │ │ ├── compr_Hhirst_BGE.jpg │ │ │ │ ├── compr_Scotland_castle_wedding.jpg │ │ │ │ ├── compr_Tower-Bridge-at-night--London--England_web.jpg │ │ │ │ ├── compr_architecture1.jpg │ │ │ │ ├── compr_architecture_2.jpg │ │ │ │ ├── compr_bamarket115.jpg │ │ │ │ ├── compr_butterflywallpaper.jpg │ │ │ │ ├── compr_damien_hirst.jpg │ │ │ │ ├── compr_damien_hirst_does_fashion_week.jpg │ │ │ │ ├── compr_damien_hirst_virgin_mother.jpg │ │ │ │ ├── compr_damienhirst.jpg │ │ │ │ ├── compr_dhirst_a3b9ddea.jpg │ │ │ │ ├── compr_diamondskull.jpg │ │ │ │ ├── compr_doodle.jpg │ │ │ │ ├── compr_england.jpg │ │ │ │ ├── compr_englandpath.jpg │ │ │ │ ├── compr_jasper_johns.jpg │ │ │ │ ├── compr_johns_portrait_380x311.jpg │ │ │ │ ├── compr_latrobe.jpg │ │ │ │ ├── compr_targetjasperjohns.jpg │ │ │ │ ├── compr_uk-golf-scotland.jpg │ │ │ │ └── compr_wallacestevens.jpg │ │ │ └── misc │ │ │ │ ├── misc_Chang_PermanentMidnightintheChairofJasperJohns_large.bmp │ │ │ │ ├── misc_Hhirst_BGE.bmp │ │ │ │ ├── misc_Scotland_castle_wedding.bmp │ │ │ │ ├── misc_Tower-Bridge-at-night--London--England_web.bmp │ │ │ │ ├── misc_architecture1.bmp │ │ │ │ ├── misc_architecture_2.bmp │ │ │ │ ├── misc_bamarket115.bmp │ │ │ │ ├── misc_butterflywallpaper.bmp │ │ │ │ ├── misc_damien_hirst.bmp │ │ │ │ ├── misc_damien_hirst_does_fashion_week.bmp │ │ │ │ ├── misc_damien_hirst_virgin_mother.bmp │ │ │ │ ├── misc_damienhirst.bmp │ │ │ │ ├── misc_dhirst_a3b9ddea.bmp │ │ │ │ ├── misc_diamondskull.bmp │ │ │ │ ├── misc_doodle.bmp │ │ │ │ ├── misc_england.bmp │ │ │ │ ├── misc_englandpath.bmp │ │ │ │ ├── misc_jasper_johns.bmp │ │ │ │ ├── misc_johns_portrait_380x311.bmp │ │ │ │ ├── misc_latrobe.bmp │ │ │ │ ├── misc_targetjasperjohns.bmp │ │ │ │ ├── misc_uk-golf-scotland.bmp │ │ │ │ └── misc_wallacestevens.bmp │ │ ├── CococaImageHashingTests.m │ │ ├── OSAHashTests.m │ │ ├── OSDHashTests.m │ │ ├── OSFastGraphicsTests.m │ │ ├── OSImageHashingBaseTest.h │ │ ├── OSImageHashingBaseTest.m │ │ ├── OSPHashTests.m │ │ └── OSSimilaritySearchTests.m │ │ ├── MixboxDi │ │ └── CompoundDependencyResolverTests.swift │ │ ├── MixboxFoundation │ │ ├── CachingLazyMappingSequenceTests.swift │ │ ├── CollectionExtensionTests.swift │ │ ├── DebugDescriptionBuilderTests.swift │ │ ├── GenericSerializationTests.swift │ │ ├── ObjectiveC │ │ │ ├── AssociatedObjectTests.swift │ │ │ ├── AssociatedValueTests.swift │ │ │ └── ObjectiveCExceptionCatcherTests.swift │ │ ├── String_Indentation_Tests.swift │ │ ├── ThreadUnsafeOnceToken │ │ │ └── ThreadUnsafeOnceTokenTests.swift │ │ └── UnwrapOrThrowTests.swift │ │ ├── MixboxGenerator │ │ ├── AnyGenerator │ │ │ └── DynamicLookup │ │ │ │ └── DynamicLookupGeneratorTests.swift │ │ ├── Generator │ │ │ ├── GeneratorTests.swift │ │ │ └── Generators │ │ │ │ ├── Foundation │ │ │ │ └── RandomUrlGeneratorTests.swift │ │ │ │ └── Swift │ │ │ │ ├── Empty │ │ │ │ ├── EmptyArrayGeneratorTests.swift │ │ │ │ ├── EmptyDictionaryGeneratorTests.swift │ │ │ │ └── EmptyOptionalGeneratorTests.swift │ │ │ │ └── Random │ │ │ │ ├── RandomArrayGeneratorTests.swift │ │ │ │ ├── RandomBoolGeneratorTests.swift │ │ │ │ ├── RandomDictionaryGeneratorTests.swift │ │ │ │ ├── RandomFloatGeneratorTests.swift │ │ │ │ ├── RandomIntegerGeneratorTests.swift │ │ │ │ └── RandomSetGeneratorTests.swift │ │ ├── GeneratorFacadeTests │ │ │ ├── GeneratorFacadeTests.swift │ │ │ ├── Support │ │ │ │ ├── BaseGeneratorFacadeTests+SharedCode.swift │ │ │ │ └── BaseGeneratorFacadeTests+SharedModels.swift │ │ │ └── Tests │ │ │ │ ├── CommonLogicGeneratorFacadeTests.swift │ │ │ │ ├── GeneratingNestedFields │ │ │ │ └── NestedFieldsGeneratorFacadeTests.swift │ │ │ │ └── GeneratingTopLevelObjects │ │ │ │ ├── ArrayGeneratorFacadeTests.swift │ │ │ │ ├── DictionaryGeneratorFacadeTests.swift │ │ │ │ ├── EnumsGeneratorFacadeTests.swift │ │ │ │ ├── NonFinalClassesGeneratorFacadeTests.swift │ │ │ │ └── OptionalGeneratorFacadeTests.swift │ │ ├── Random │ │ │ ├── MersenneTwisterRandomNumberProviderTests.swift │ │ │ └── OverflowingUInt64Tests.swift │ │ └── Support │ │ │ └── BaseGeneratorTestCase.swift │ │ ├── MixboxGray │ │ └── MultiTouchEventFactoryTests.swift │ │ ├── MixboxInAppServices │ │ ├── IdlingResourceObjectTrackerTests.swift │ │ ├── ImagePixelDataTests.swift │ │ ├── InAppScreenshotTakerImplTests.swift │ │ ├── ObjcRuntimeObjcMethodsWithUniqueImplementationProviderTests.swift │ │ ├── UiEventObservableImplTests.swift │ │ ├── VisibilityCheckForLoopOptimizerImplTests.swift │ │ └── VisibilityCheckImageColorShifterImplTests.swift │ │ ├── MixboxIoKit │ │ ├── BaseEventTestCase.swift │ │ ├── DigitizerEventTests.swift │ │ ├── DigitizerFingerEventTests.swift │ │ └── EventOptionBitsTests.swift │ │ ├── MixboxIpcCommon │ │ └── IpcThrowingFunctionResultTests.swift │ │ ├── MixboxMocksRuntime │ │ ├── FixturePaths │ │ │ └── FixturesPathsForOsxUnitTests.swift │ │ ├── Fixtures │ │ │ ├── ForGenerics │ │ │ │ ├── Protocol0.swift │ │ │ │ ├── Protocol1.swift │ │ │ │ ├── Protocol2.swift │ │ │ │ ├── Protocol3.swift │ │ │ │ └── Protocol4.swift │ │ │ ├── MocksTestsFixtureBaseProtocolFromOtherFile.swift │ │ │ ├── MocksTestsFixtureObjcProtocol.swift │ │ │ ├── MocksTestsFixtureProtocol.swift │ │ │ └── MocksTestsFixtureSimpleProtocol.swift │ │ ├── Models │ │ │ ├── Completion.swift │ │ │ └── GenericCompletionHolder.swift │ │ ├── Support │ │ │ ├── BaseMixboxMocksRuntimeTests.swift │ │ │ └── Extensions │ │ │ │ ├── RecordedCall+Equatable.swift │ │ │ │ ├── RecordedCallArgument+Equatable.swift │ │ │ │ ├── RecordedCallArgumentValue+Equatable.swift │ │ │ │ └── RecordedCallArguments+Equatable.swift │ │ └── Tests │ │ │ ├── DynamicBehaviorGeneration │ │ │ ├── Integrational │ │ │ │ ├── DynamicBehaviorIntegrationalTests.swift │ │ │ │ └── DynamicBehaviorIntegrationalTestsProtocol.swift │ │ │ └── MixboxMocksDynamicResultTests.swift │ │ │ ├── EasyClosureStubbing │ │ │ ├── EasyClosureStubbingIntegrationalTests.swift │ │ │ └── EasyClosureStubbingIntegrationalTestsProtocol.swift │ │ │ ├── PublicInterfaceOfMocks │ │ │ └── MixboxMocksSettingMockManagerTests.swift │ │ │ ├── RecordedCallsHolderImplTests.swift │ │ │ ├── StubsHolderImplImplTests.swift │ │ │ └── SupportForDifferentDeclarations │ │ │ ├── MixboxMocksGenericFunctionsTests.swift │ │ │ ├── MixboxMocksNonEscapingFunctionsTests.swift │ │ │ └── MixboxMocksThrowingFunctionsTests.swift │ │ ├── MixboxReflection │ │ ├── EnumImmutableValueReflectionTests.swift │ │ ├── ValueCodeGenerator │ │ │ ├── BaseValueCodeGeneratorTests+SharedFunctions.swift │ │ │ ├── BaseValueCodeGeneratorTests+SharedModels.swift │ │ │ ├── BaseValueCodeGeneratorTests.swift │ │ │ ├── ValueCodeGeneratorCollectionsTests.swift │ │ │ ├── ValueCodeGeneratorEnumsTests.swift │ │ │ ├── ValueCodeGeneratorIntegrationTests.swift │ │ │ ├── ValueCodeGeneratorKnownIssuesTests.swift │ │ │ ├── ValueCodeGeneratorPrimitivesTests.swift │ │ │ ├── ValueCodeGeneratorRecursionTests.swift │ │ │ └── ValueCodeGeneratorTuplesTests.swift │ │ └── ValueIsObjectCheckerTests.swift │ │ ├── MixboxTestsFoundation │ │ ├── AutomaticCurrentTestCaseProvider.swift │ │ ├── BundleResourcePathProvider │ │ │ ├── BundleResourcePathProviderImplTests.swift │ │ │ ├── BundleResourcePathProviderImplTests.with.lots.of.dots.json │ │ │ ├── BundleResourcePathProviderImplTests_with_extension.json │ │ │ └── BundleResourcePathProviderImplTests_without_extension_json │ │ ├── Collection_ElementOrFail_Tests.swift │ │ ├── Collection_OnlyOrFail_Tests.swift │ │ ├── CurrentApplicationCurrentSimulatorFileSystemRootProviderTests.swift │ │ ├── DynamicMatcherBuilder │ │ │ └── DynamicMatcherBuilderTests.swift │ │ ├── FileLineForFailureProvider │ │ │ ├── ExtendedStackTraceEntryFromStackTraceEntryConverterImplTests.swift │ │ │ ├── ExtendedStackTraceProviderImplTests.swift │ │ │ ├── FirstOfTargetFileFromCallStackFileLineForFailureProvider │ │ │ │ └── FirstOfTargetFileFromCallStackFileLineForFailureProviderTests.swift │ │ │ ├── LastCallOfCurrentTestFileLineForFailureProvider │ │ │ │ ├── LastCallOfCurrentTestFileLineForFailureProviderIntegrationTests.swift │ │ │ │ └── LastCallOfCurrentTestFileLineForFailureProviderUnitTests.swift │ │ │ └── Support │ │ │ │ ├── ExtendedStackTraceProviderMock.swift │ │ │ │ └── FileForStacktraceTestsWithFixedNameAndLineNumbers.swift │ │ └── SimulatorFileSystemRootTests.swift │ │ ├── MixboxUiKit │ │ └── Extensions │ │ │ └── CoreGraphics │ │ │ ├── CGRect │ │ │ └── CGRect_Rounding_Tests.swift │ │ │ └── CGVector_Extensions_Tests.swift │ │ ├── MixboxUiTestsFoundation │ │ ├── AutomaticRecorderAndReplayerCreationSettingsProvider │ │ │ ├── AutomaticRecorderAndReplayerCreationSettingsProviderImplTests.empty.json │ │ │ ├── AutomaticRecorderAndReplayerCreationSettingsProviderImplTests.recordedNetworkSession.json │ │ │ └── AutomaticRecorderAndReplayerCreationSettingsProviderImplTests.swift │ │ ├── ElementSettingsTests.swift │ │ ├── ImageHash │ │ │ └── ImageHashCalculatorTests.swift │ │ ├── Matching │ │ │ ├── ElementMatcherBuilderTests.swift │ │ │ ├── Matchers │ │ │ │ ├── Array │ │ │ │ │ └── ArrayEqualsMatcherTests.swift │ │ │ │ ├── ElementSnapshot │ │ │ │ │ ├── IsSubviewMatcherTests.swift │ │ │ │ │ └── SnapshotHierarchyMatcherTests.swift │ │ │ │ ├── Logic │ │ │ │ │ ├── AlwaysFalseMatcherTests.swift │ │ │ │ │ ├── AlwaysTrueMatcherTests.swift │ │ │ │ │ ├── AndMatcherTests.swift │ │ │ │ │ ├── NotMatcherTests.swift │ │ │ │ │ ├── OrMatcherTests.swift │ │ │ │ │ └── Support │ │ │ │ │ │ ├── BaseLogicMatcherTests.swift │ │ │ │ │ │ └── TestFailingMatcher.swift │ │ │ │ └── Value │ │ │ │ │ └── Comparable │ │ │ │ │ ├── IsGreaterMatcherTests.swift │ │ │ │ │ ├── IsGreaterOrEqualsMatcherTests.swift │ │ │ │ │ ├── IsGreaterOrEqualsWithAccuracyMatcherTests.swift │ │ │ │ │ ├── IsGreaterWithAccuracyMatcherTests.swift │ │ │ │ │ ├── IsLessMatcherTests.swift │ │ │ │ │ ├── IsLessOrEqualsMatcherTests.swift │ │ │ │ │ ├── IsLessOrEqualsWithAccuracyMatcherTests.swift │ │ │ │ │ └── IsLessWithAccuracyMatcherTests.swift │ │ │ └── Support │ │ │ │ ├── BaseMatcherTests.swift │ │ │ │ ├── ElementSnapshotStub.swift │ │ │ │ └── ElementSnapshotStubTests.swift │ │ ├── RecordedSessionStubber │ │ │ └── RecordedSessionStubberTests.swift │ │ └── SnapshotComparison │ │ │ ├── BaseSnapshotsComparatorTestCase.swift │ │ │ ├── ImageHashCalculatorSnapshotsComparatorTests.swift │ │ │ ├── PerPixelSnapshotsComparatorTests.swift │ │ │ └── SnapshotComparisonAccuracyTests.swift │ │ └── SelfCheck │ │ └── RecordIssueIsOverridenByRecordFailureTests.swift └── WhiteBoxAndGrayBoxTestsShared │ └── Accessibility │ ├── BaseTestabilityTestCase.swift │ ├── NSObjectTestabilityTests.swift │ └── UIViewTestabilityTests.swift ├── ci ├── bash │ ├── bash_ci.sh │ └── include │ │ ├── bash_utils.sh │ │ ├── ci_integration.sh │ │ ├── ci_integration │ │ ├── __init__.py │ │ ├── base_ci_integration.sh │ │ ├── no_ci_integration.sh │ │ └── teamcity_ci_integration.sh │ │ ├── error_handling.sh │ │ ├── install_python.sh │ │ ├── python.sh │ │ ├── swift_package_manager.sh │ │ └── utils.sh ├── builds │ ├── check_bumping_version │ └── push_specs ├── destinations │ ├── all_destinations_for_pr.json │ └── single_destination_for_pr.json ├── gemfiles │ ├── Gemfile_cocoapods │ └── Gemfile_cocoapods.lock ├── swift │ ├── .emceeversion │ ├── .gitignore │ ├── MakePackage │ │ ├── Package.swift.template │ │ ├── make_package.py │ │ └── requirements.txt │ ├── Makefile │ ├── Package.resolved │ ├── Sources │ │ ├── AllTests │ │ │ ├── Support │ │ │ │ └── XCTestCase+AssertDoesntThrow.swift │ │ │ └── Tests │ │ │ │ ├── Bash │ │ │ │ ├── FunctionalTests │ │ │ │ │ └── BashExecutorFunctionalTests.swift │ │ │ │ ├── Mocks │ │ │ │ │ ├── BashExecutorMock.swift │ │ │ │ │ └── ProcessExecutorMock.swift │ │ │ │ └── UnitTests │ │ │ │ │ ├── BashEscapedCommandMakerImplTests.swift │ │ │ │ │ └── BashExecutorUnitTests.swift │ │ │ │ ├── CiFoundation │ │ │ │ ├── FunctionalTests │ │ │ │ │ ├── FileDownloaderTests.swift │ │ │ │ │ └── TemporaryFileProviderTests.swift │ │ │ │ └── Mocks │ │ │ │ │ ├── EnvironmentProviderMock.swift │ │ │ │ │ └── TemporaryFileProviderMock.swift │ │ │ │ ├── Cocoapods │ │ │ │ ├── CocoapodsSearchOutputParserImplTests.swift │ │ │ │ ├── CocoapodsTrunkInfoOutputParserImplTests.swift │ │ │ │ └── ThrowingScannerTests.swift │ │ │ │ ├── Di │ │ │ │ └── UnitTests │ │ │ │ │ └── TeamcityBuildDiTests.swift │ │ │ │ ├── Git │ │ │ │ ├── FunctionalTests │ │ │ │ │ └── GitTagsProviderImplTests.swift │ │ │ │ └── Mocks │ │ │ │ │ ├── CurrentCommitProviderMock.swift │ │ │ │ │ ├── GitRevListProviderMock.swift │ │ │ │ │ ├── GitTagsProviderMock.swift │ │ │ │ │ └── RepoRootProviderMock.swift │ │ │ │ ├── Releases │ │ │ │ └── UnitTests │ │ │ │ │ ├── ListOfPodspecsToPushProviderImplTests.swift │ │ │ │ │ ├── NextReleaseVersionProviderImplTests.swift │ │ │ │ │ └── PodspecsPatcherImplTests.swift │ │ │ │ ├── Simctl │ │ │ │ ├── SimctlTests.swift │ │ │ │ ├── list_xc_10_0_0.json │ │ │ │ ├── list_xc_10_1_0.json │ │ │ │ ├── list_xc_10_2_1.json │ │ │ │ ├── list_xc_11_0_0.json │ │ │ │ └── list_xc_11_4_1.json │ │ │ │ └── StaticChecksTask │ │ │ │ ├── Mocks │ │ │ │ ├── FrameworkInfosProviderMock.swift │ │ │ │ └── FrameworksDirectoryProviderMock.swift │ │ │ │ └── UnitTests │ │ │ │ ├── FrameworkInfosProviderImplTests.swift │ │ │ │ ├── IfClauseInfoByPathProviderImplTests.swift │ │ │ │ ├── MissingConditionalCompilationClausesProviderImplTests.swift │ │ │ │ └── SwiftLintViolationsParserTests.swift │ │ ├── Bash │ │ │ ├── BashCommandEscaper │ │ │ │ ├── BashEscapedCommandMaker.swift │ │ │ │ └── BashEscapedCommandMakerImpl.swift │ │ │ ├── BashExecutor │ │ │ │ ├── BashExecutor.swift │ │ │ │ ├── Impls │ │ │ │ │ └── ProcessExecutorBashExecutor.swift │ │ │ │ └── Models │ │ │ │ │ ├── BashEnvironment.swift │ │ │ │ │ ├── BashOutput.swift │ │ │ │ │ ├── BashResult.swift │ │ │ │ │ └── NonZeroExitCodeBashError.swift │ │ │ └── ProcessExecutor │ │ │ │ ├── Impls │ │ │ │ ├── FoundationProcessExecutor │ │ │ │ │ ├── FoundationProcessExecutor.swift │ │ │ │ │ └── Support │ │ │ │ │ │ ├── LazyPipeProcessOutput.swift │ │ │ │ │ │ ├── Pipe.swift │ │ │ │ │ │ └── Process.swift │ │ │ │ └── LoggingProcessExecutor.swift │ │ │ │ ├── Models │ │ │ │ ├── ProcessExecutorOutputHandling.swift │ │ │ │ ├── ProcessOutput │ │ │ │ │ ├── PlainProcessOutput.swift │ │ │ │ │ └── ProcessOutput.swift │ │ │ │ └── ProcessResult.swift │ │ │ │ └── ProcessExecutor.swift │ │ ├── BuildDsl │ │ │ └── Build │ │ │ │ ├── Build.swift │ │ │ │ ├── BuildDiFactory.swift │ │ │ │ ├── BuildRunner.swift │ │ │ │ ├── BuildTaskFactory.swift │ │ │ │ ├── Teamcity │ │ │ │ ├── BaseTeamcityBuild.swift │ │ │ │ └── TeamcityBuild.swift │ │ │ │ └── Travis │ │ │ │ ├── BaseTravisBuild.swift │ │ │ │ └── TravisBuild.swift │ │ ├── Bundler │ │ │ ├── BundledProcessExecutor │ │ │ │ ├── BundledProcessExecutor.swift │ │ │ │ └── BundledProcessExecutorImpl.swift │ │ │ ├── BundlerBashCommandGenerator │ │ │ │ ├── BundlerBashCommandGenerator.swift │ │ │ │ └── BundlerBashCommandGeneratorImpl.swift │ │ │ └── GemfileLocationProvider │ │ │ │ ├── GemfileLocationProvider.swift │ │ │ │ └── GemfileLocationProviderImpl.swift │ │ ├── CheckDemoTask │ │ │ └── CheckDemoTask.swift │ │ ├── CheckIpcDemoTask │ │ │ └── CheckIpcDemoTask.swift │ │ ├── CheckReleaseToCocoapodsTask │ │ │ └── CheckReleaseToCocoapodsTask.swift │ │ ├── CiDi │ │ │ ├── CommonDi.swift │ │ │ └── Emcee │ │ │ │ ├── DefaultSimulatorOperationTimeoutsProvider.swift │ │ │ │ ├── EmceeFileUploaderImpl.swift │ │ │ │ └── EmceeVersionProviderImpl.swift │ │ ├── CiFoundation │ │ │ ├── Box │ │ │ │ ├── Box.swift │ │ │ │ └── MutableBox.swift │ │ │ ├── CiLogger │ │ │ │ ├── CiLogger.swift │ │ │ │ └── StdoutCiLogger.swift │ │ │ ├── CompoundError.swift │ │ │ ├── CopypastedFromMixbox │ │ │ │ ├── ErrorString.swift │ │ │ │ ├── LazyLoader.swift │ │ │ │ └── Optional+UnwrapOrThrow.swift │ │ │ ├── Environment │ │ │ │ ├── DebugEnvironmentProvider.swift │ │ │ │ ├── EnvironmentProvider.swift │ │ │ │ └── ProcessInfoEnvironmentProvider.swift │ │ │ ├── JSON │ │ │ │ ├── DecodableFromJsonFileLoader │ │ │ │ │ ├── DecodableFromJsonFileLoader.swift │ │ │ │ │ └── DecodableFromJsonFileLoaderImpl.swift │ │ │ │ └── JsonFileFromEncodableGenerator │ │ │ │ │ ├── JsonFileFromEncodableGenerator.swift │ │ │ │ │ └── JsonFileFromEncodableGeneratorImpl.swift │ │ │ ├── Optional+ToArray.swift │ │ │ ├── Retrier │ │ │ │ ├── Retrier.swift │ │ │ │ └── RetrierImpl.swift │ │ │ ├── TemporaryFileProvider │ │ │ │ ├── TemporaryFileProvider.swift │ │ │ │ └── TemporaryFileProviderImpl.swift │ │ │ └── URL+ThrowingInit.swift │ │ ├── Cocoapods │ │ │ ├── Cache │ │ │ │ └── Clean │ │ │ │ │ ├── CocoapodCacheClean.swift │ │ │ │ │ ├── CocoapodCacheCleanImpl.swift │ │ │ │ │ └── CocoapodCacheCleanTarget.swift │ │ │ ├── Install │ │ │ │ ├── CocoapodsInstall.swift │ │ │ │ └── CocoapodsInstallImpl.swift │ │ │ ├── Repo │ │ │ │ ├── Add │ │ │ │ │ ├── CocoapodsRepoAdd.swift │ │ │ │ │ └── CocoapodsRepoAddImpl.swift │ │ │ │ └── Push │ │ │ │ │ ├── CocoapodsRepoPush.swift │ │ │ │ │ └── CocoapodsRepoPushImpl.swift │ │ │ ├── Search │ │ │ │ ├── CocoapodsSearch │ │ │ │ │ ├── CocoapodsSearch.swift │ │ │ │ │ └── CocoapodsSearchImpl.swift │ │ │ │ ├── CocoapodsSearchOutputParser │ │ │ │ │ ├── CocoapodsSearchOutputParser.swift │ │ │ │ │ └── CocoapodsSearchOutputParserImpl.swift │ │ │ │ └── Models │ │ │ │ │ └── CocoapodsSearchResult.swift │ │ │ ├── Support │ │ │ │ ├── CocoapodsCommandExecutor │ │ │ │ │ ├── CocoapodsCommandExecutor.swift │ │ │ │ │ ├── CocoapodsCommandExecutorImpl.swift │ │ │ │ │ └── patched_pod.rb │ │ │ │ ├── CocoapodsTrunkCommandExecutor │ │ │ │ │ ├── CocoapodsTrunkCommandExecutor.swift │ │ │ │ │ └── CocoapodsTrunkCommandExecutorImpl.swift │ │ │ │ ├── CocoapodsTrunkTokenProvider │ │ │ │ │ └── CocoapodsTrunkTokenProvider.swift │ │ │ │ └── ThrowingScanner │ │ │ │ │ ├── ThrowingScanner.swift │ │ │ │ │ └── ThrowingScannerImpl.swift │ │ │ └── Trunk │ │ │ │ ├── AddOwner │ │ │ │ ├── CocoapodsTrunkAddOwner.swift │ │ │ │ └── CocoapodsTrunkAddOwnerImpl.swift │ │ │ │ ├── Info │ │ │ │ ├── CocoapodsTrunkInfo │ │ │ │ │ ├── CocoapodsTrunkInfo.swift │ │ │ │ │ └── CocoapodsTrunkInfoImpl.swift │ │ │ │ ├── CocoapodsTrunkInfoOutputParser │ │ │ │ │ ├── CocoapodsTrunkInfoOutputParser.swift │ │ │ │ │ └── CocoapodsTrunkInfoOutputParserImpl.swift │ │ │ │ └── Models │ │ │ │ │ └── CocoapodsTrunkInfoResult.swift │ │ │ │ ├── Push │ │ │ │ ├── CocoapodsTrunkPush.swift │ │ │ │ └── CocoapodsTrunkPushImpl.swift │ │ │ │ └── RemoveOwner │ │ │ │ ├── CocoapodsTrunkRemoveOwner.swift │ │ │ │ └── CocoapodsTrunkRemoveOwnerImpl.swift │ │ ├── Destinations │ │ │ ├── MixboxTestDestination │ │ │ │ ├── MixboxTestDestinationProvider.swift │ │ │ │ └── MixboxTestDestinationProviderImpl.swift │ │ │ ├── MixboxTestDestinationConfigurationsProvider │ │ │ │ ├── MixboxTestDestinationConfigurationsProvider.swift │ │ │ │ └── MixboxTestDestinationConfigurationsProviderImpl.swift │ │ │ └── Models │ │ │ │ ├── MixboxTestDestination.swift │ │ │ │ └── MixboxTestDestinationConfiguration.swift │ │ ├── Emcee │ │ │ ├── Emcee │ │ │ │ ├── Commands │ │ │ │ │ ├── EmceeDumpCommand │ │ │ │ │ │ ├── EmceeDumpCommand.swift │ │ │ │ │ │ ├── EmceeDumpCommandArguments.swift │ │ │ │ │ │ └── EmceeDumpCommandImpl.swift │ │ │ │ │ └── EmceeRunTestsOnRemoteQueueCommand │ │ │ │ │ │ ├── EmceeRunTestsOnRemoteQueueCommand.swift │ │ │ │ │ │ ├── EmceeRunTestsOnRemoteQueueCommandArguments.swift │ │ │ │ │ │ └── EmceeRunTestsOnRemoteQueueCommandImpl.swift │ │ │ │ ├── DelegatingEmcee.swift │ │ │ │ └── Emcee.swift │ │ │ ├── EmceeExecutable │ │ │ │ ├── EmceeExecutable.swift │ │ │ │ └── EmceeExecutableImpl.swift │ │ │ ├── EmceeInstaller │ │ │ │ ├── EmceeInstaller.swift │ │ │ │ └── EmceeInstallerImpl.swift │ │ │ ├── EmceeProvider │ │ │ │ ├── CachingEmceeProvider.swift │ │ │ │ ├── EmceeProvider.swift │ │ │ │ └── InstallingEmceeProvider.swift │ │ │ ├── EmceeVersionProvider │ │ │ │ └── EmceeVersionProvider.swift │ │ │ ├── RemoteCacheConfigProvider │ │ │ │ └── RemoteCacheConfigProvider.swift │ │ │ ├── RuntimeDump │ │ │ │ └── RuntimeDump.swift │ │ │ ├── SimulatorOperationTimeoutsProvider │ │ │ │ └── SimulatorOperationTimeoutsProvider.swift │ │ │ ├── SimulatorSettingsProvider │ │ │ │ └── SimulatorSettingsProvider.swift │ │ │ ├── TestArgsFile │ │ │ │ ├── TestArgsFileGenerator │ │ │ │ │ ├── TestArgsFileGenerator.swift │ │ │ │ │ └── TestArgsFileGeneratorImpl.swift │ │ │ │ ├── TestArgsFileGeneratorArguments.swift │ │ │ │ └── TestArgsFileJsonGenerator │ │ │ │ │ ├── TestArgsFileJsonGenerator.swift │ │ │ │ │ └── TestArgsFileJsonGeneratorImpl.swift │ │ │ ├── ToolchainConfigurationProvider │ │ │ │ └── DeveloperDirProvider.swift │ │ │ └── Uploader │ │ │ │ └── EmceeFileUploader.swift │ │ ├── Git │ │ │ ├── GitCommandExecutor │ │ │ │ ├── GitCommandExecutor.swift │ │ │ │ └── GitCommandExecutorImpl.swift │ │ │ ├── GitRevListProvider │ │ │ │ ├── GitRevListProvider.swift │ │ │ │ └── GitRevListProviderImpl.swift │ │ │ ├── GitTagAdder │ │ │ │ ├── GitTagAdder.swift │ │ │ │ └── GitTagAdderImpl.swift │ │ │ ├── GitTagDeleter │ │ │ │ ├── GitTagDeleter.swift │ │ │ │ └── GitTagDeleterImpl.swift │ │ │ ├── GitTagsProvider │ │ │ │ ├── GitTagsProvider.swift │ │ │ │ ├── GitTagsProviderImpl.swift │ │ │ │ └── Models │ │ │ │ │ └── GitTag.swift │ │ │ ├── HeadCommitHashProvider │ │ │ │ ├── HeadCommitHashProvider.swift │ │ │ │ └── HeadCommitHashProviderIImpl.swift │ │ │ └── RepoRootProvider │ │ │ │ ├── RepoRootProvider.swift │ │ │ │ └── RepoRootProviderImpl.swift │ │ ├── ManagePodOwnersTask │ │ │ └── ManagePodOwnersTask.swift │ │ ├── ReleaseToCocoapodsTask │ │ │ └── ReleaseToCocoapodsTask.swift │ │ ├── Releases │ │ │ ├── ListOfPodspecsToPushProvider │ │ │ │ ├── EitherArrayOrElement.swift │ │ │ │ ├── JsonPodspec.swift │ │ │ │ ├── JsonSubspec.swift │ │ │ │ ├── ListOfPodspecsToPushProvider.swift │ │ │ │ └── ListOfPodspecsToPushProviderImpl.swift │ │ │ ├── MixboxPodspecsPusher │ │ │ │ ├── MixboxPodspecsPusher.swift │ │ │ │ └── MixboxPodspecsPusherImpl.swift │ │ │ ├── MixboxPodspecsValidator │ │ │ │ ├── MixboxPodspecsValidator.swift │ │ │ │ └── MixboxPodspecsValidatorImpl.swift │ │ │ ├── MixboxReleaseSettingsProvider │ │ │ │ ├── MixboxReleaseSettingsProvider.swift │ │ │ │ └── MixboxReleaseSettingsProviderImpl.swift │ │ │ ├── Models │ │ │ │ ├── Version.swift │ │ │ │ └── VersionTag.swift │ │ │ ├── PodspecsPatcher │ │ │ │ ├── PodspecsPatcher.swift │ │ │ │ └── PodspecsPatcherImpl.swift │ │ │ ├── Tags │ │ │ │ ├── AfterReleaseTagsSetter │ │ │ │ │ └── AfterReleaseTagsSetter.swift │ │ │ │ ├── AfterReleaseTagsSetterForExistingReleaseProvider │ │ │ │ │ └── AfterReleaseTagsSetterForExistingReleaseProvider.swift │ │ │ │ └── BeforeReleaseTagsSetter │ │ │ │ │ ├── BeforeReleaseTagsSetter.swift │ │ │ │ │ └── BeforeReleaseTagsSetterImpl.swift │ │ │ └── Versioning │ │ │ │ ├── CurrentReleaseVersionProvider │ │ │ │ ├── CurrentReleaseVersionProvider.swift │ │ │ │ └── CurrentReleaseVersionProviderImpl.swift │ │ │ │ ├── NextReleaseVersionProvider │ │ │ │ ├── NextReleaseVersionProvider.swift │ │ │ │ └── NextReleaseVersionProviderImpl.swift │ │ │ │ └── RepositoryVersioningInfoProvider │ │ │ │ ├── Models │ │ │ │ └── RepositoryVersioningInfo.swift │ │ │ │ ├── RepositoryVersioningInfoProvider.swift │ │ │ │ └── RepositoryVersioningInfoProviderImpl.swift │ │ ├── RemoteFiles │ │ │ ├── FileDownloader │ │ │ │ ├── AlamofireFileDownloader.swift │ │ │ │ └── FileDownloader.swift │ │ │ ├── FileUploader │ │ │ │ ├── FileUploader.swift │ │ │ │ └── FileUploaderImpl.swift │ │ │ └── FileUploaderExecutableProvider │ │ │ │ ├── FileUploaderExecutable.swift │ │ │ │ ├── FileUploaderExecutableProvider.swift │ │ │ │ └── FileUploaderExecutableProviderImpl.swift │ │ ├── RunBlackBoxTestsTask │ │ │ └── RunBlackBoxTestsTask.swift │ │ ├── RunGrayBoxTestsTask │ │ │ └── RunGrayBoxTestsTask.swift │ │ ├── RunUnitTestsTask │ │ │ └── RunUnitTestsTask.swift │ │ ├── Simctl │ │ │ ├── Commands │ │ │ │ ├── Boot │ │ │ │ │ ├── SimctlBoot.swift │ │ │ │ │ └── SimctlBootImpl.swift │ │ │ │ ├── Create │ │ │ │ │ ├── SimctlCreate.swift │ │ │ │ │ └── SimctlCreateImpl.swift │ │ │ │ ├── List │ │ │ │ │ ├── SimctlList.swift │ │ │ │ │ ├── SimctlListImpl.swift │ │ │ │ │ └── SimctlListResult.swift │ │ │ │ └── Shutdown │ │ │ │ │ ├── SimctlShutdown.swift │ │ │ │ │ └── SimctlShutdownImpl.swift │ │ │ ├── Facade │ │ │ │ ├── DelegatingSimctl.swift │ │ │ │ └── Simctl.swift │ │ │ ├── Models │ │ │ │ ├── Device.swift │ │ │ │ ├── DeviceType.swift │ │ │ │ ├── DeviceTypeIdentifier.swift │ │ │ │ ├── Pair.swift │ │ │ │ ├── Runtime.swift │ │ │ │ └── RuntimeIdentifier.swift │ │ │ └── SimctlExecutor │ │ │ │ ├── SimctlExecutor.swift │ │ │ │ └── SimctlExecutorImpl.swift │ │ ├── SingletonHell │ │ │ └── Utils │ │ │ │ └── Env.swift │ │ ├── StaticChecksTask │ │ │ ├── ConditionalCompilationClausesChecker │ │ │ │ ├── ConditionalCompilationClausesChecker.swift │ │ │ │ ├── ConditionalCompilationClausesCheckerImpl.swift │ │ │ │ ├── FrameworkInfo │ │ │ │ │ ├── FrameworkInfo.swift │ │ │ │ │ ├── FrameworkInfosProvider │ │ │ │ │ │ ├── FrameworkInfosProvider.swift │ │ │ │ │ │ └── FrameworkInfosProviderImpl.swift │ │ │ │ │ └── FrameworksDirectoryProvider │ │ │ │ │ │ ├── FrameworksDirectoryProvider.swift │ │ │ │ │ │ └── FrameworksDirectoryProviderImpl.swift │ │ │ │ ├── IfClauseInfo │ │ │ │ │ ├── IfClauseInfo.swift │ │ │ │ │ └── IfClauseInfoByPathProvider │ │ │ │ │ │ ├── IfClauseInfoByPathProvider.swift │ │ │ │ │ │ └── IfClauseInfoByPathProviderImpl.swift │ │ │ │ ├── MissingConditionalCompilationClause │ │ │ │ │ ├── FilesEnumerator │ │ │ │ │ │ ├── FilesEnumerator.swift │ │ │ │ │ │ └── FilesEnumeratorImpl.swift │ │ │ │ │ ├── MissingConditionalCompilationClause.swift │ │ │ │ │ ├── MissingConditionalCompilationClausesProvider │ │ │ │ │ │ ├── MissingConditionalCompilationClausesProvider.swift │ │ │ │ │ │ └── MissingConditionalCompilationClausesProviderImpl.swift │ │ │ │ │ └── MixboxFrameworksEnumerator │ │ │ │ │ │ ├── MixboxFrameworksEnumerator.swift │ │ │ │ │ │ └── MixboxFrameworksEnumeratorImpl.swift │ │ │ │ └── MissingConditionalCompilationClausesAutocorrector │ │ │ │ │ ├── MissingConditionalCompilationClausesAutocorrector.swift │ │ │ │ │ └── MissingConditionalCompilationClausesAutocorrectorImpl.swift │ │ │ ├── Linter │ │ │ │ ├── SwiftLint │ │ │ │ │ ├── SwiftLint.swift │ │ │ │ │ └── SwiftLintImpl.swift │ │ │ │ ├── SwiftLintViolation │ │ │ │ │ ├── SwiftLintViolation.swift │ │ │ │ │ └── SwiftLintViolationType.swift │ │ │ │ └── SwiftLintViolationsParser │ │ │ │ │ ├── SwiftLintViolationsParser.swift │ │ │ │ │ └── SwiftLintViolationsParserImpl.swift │ │ │ └── StaticChecksTask.swift │ │ ├── Tasks │ │ │ ├── LocalTask.swift │ │ │ └── LocalTaskExecutor.swift │ │ ├── TeamcityBlackBoxTestsBuild │ │ │ └── main.swift │ │ ├── TeamcityCheckReleaseToCocoapodsBuild │ │ │ └── main.swift │ │ ├── TeamcityDi │ │ │ ├── Impls │ │ │ │ ├── DeveloperDirProviderImpl.swift │ │ │ │ ├── RemoteCacheConfigProviderImpl.swift │ │ │ │ ├── SimulatorSettingsProviderImpl.swift │ │ │ │ ├── TeamcityCiLogger.swift │ │ │ │ ├── TeamcityCocoapodsTrunkTokenProvider.swift │ │ │ │ └── TeamcityLocalTaskExecutor.swift │ │ │ └── TeamcityBuildDi.swift │ │ ├── TeamcityGrayBoxTestsBuild │ │ │ └── main.swift │ │ ├── TeamcityIpcDemoBuild │ │ │ └── main.swift │ │ ├── TeamcityLogicTestsBuild │ │ │ └── main.swift │ │ ├── TeamcityManagePodOwnersBuild │ │ │ └── main.swift │ │ ├── TeamcityReleaseToCocoapodsBuild │ │ │ └── main.swift │ │ ├── TeamcityStaticChecksBuild │ │ │ └── main.swift │ │ ├── TeamcityUiTestsDemoBuild │ │ │ └── main.swift │ │ ├── TestRunning │ │ │ ├── IosBuildArtifactsProvider │ │ │ │ ├── IosBuildArtifactsProvider.swift │ │ │ │ ├── IosBuildArtifactsProviderFactory.swift │ │ │ │ ├── IosBuildArtifactsProviderFactoryImpl.swift │ │ │ │ └── IosBuildArtifactsProviderImpl.swift │ │ │ ├── TestRunner │ │ │ │ ├── EmceeTestRunner.swift │ │ │ │ └── TestRunner.swift │ │ │ └── TestsTaskRunner │ │ │ │ ├── TestsTaskRunner.swift │ │ │ │ └── TestsTaskRunnerImpl.swift │ │ ├── TravisDi │ │ │ ├── Impls │ │ │ │ └── TravisLocalTaskExecutor.swift │ │ │ └── TravisBuildDi.swift │ │ ├── TravisIpcDemoBuild │ │ │ └── main.swift │ │ ├── TravisLogicTestsBuild │ │ │ └── main.swift │ │ ├── TravisOversimplifiedDemoBuild │ │ │ └── main.swift │ │ └── Xcodebuild │ │ │ ├── DerivedDataPathProvider │ │ │ ├── DerivedDataPathProvider.swift │ │ │ └── DerivedDataPathProviderImpl.swift │ │ │ ├── IosProjectBuilder │ │ │ ├── IosProjectBuilder.swift │ │ │ └── IosProjectBuilderImpl.swift │ │ │ ├── MacosProjectBuilder │ │ │ ├── MacosProjectBuilder.swift │ │ │ └── MacosProjectBuilderImpl.swift │ │ │ └── Xcodebuild │ │ │ ├── Xcodebuild.swift │ │ │ ├── XcodebuildAction.swift │ │ │ ├── XcodebuildExitCode.swift │ │ │ ├── XcodebuildImpl.swift │ │ │ └── XcodebuildResult.swift │ ├── make.sh │ └── run_swift ├── tools │ └── yacc │ │ └── check_yacc └── travis │ └── make_travis_yml │ ├── make_travis_yml │ └── travis_yml ├── cocoapods ├── enable_testing_with_mixbox.rb ├── get_mixbox_dependencies_ordered_by_same_order_that_they_should_be_pushed.rb ├── lock_patcher.rb ├── mixbox_podspecs_source.rb ├── mixbox_spec.rb ├── patch_deployment_target.rb ├── patch_xcconfigs_toolchain_dir.rb ├── repo.rb ├── repo_settings.rb ├── repo_with_settings.rb └── software_versions.rb └── make.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo/HelloIpcMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo/HelloIpcMethod.swift -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo/HelloIpcMethodHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo/HelloIpcMethodHandler.swift -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo/Master.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo/Master.swift -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo/Slave.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo/Slave.swift -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo/Support/PollingSynchronousIpcClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo/Support/PollingSynchronousIpcClient.swift -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/IpcDemo/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/IpcDemo/main.swift -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/Podfile -------------------------------------------------------------------------------- /Demos/OsxIpcDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/OsxIpcDemo/Podfile.lock -------------------------------------------------------------------------------- /Demos/UiTestsDemo/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/App/AppDelegate.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demos/UiTestsDemo/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demos/UiTestsDemo/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demos/UiTestsDemo/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demos/UiTestsDemo/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/App/Info.plist -------------------------------------------------------------------------------- /Demos/UiTestsDemo/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/App/ViewController.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/BlackBoxTests/BlackBoxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/BlackBoxTests/BlackBoxTests.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/BlackBoxTests/DI/BlackBoxTestCaseDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/BlackBoxTests/DI/BlackBoxTestCaseDependencies.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/BlackBoxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/BlackBoxTests/Info.plist -------------------------------------------------------------------------------- /Demos/UiTestsDemo/BlackBoxTests/TestCase/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/BlackBoxTests/TestCase/TestCase.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/Frameworks/UiTestsSharedCode/UiTestsSharedCode.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/Frameworks/UiTestsSharedCode/UiTestsSharedCode.podspec -------------------------------------------------------------------------------- /Demos/UiTestsDemo/GrayBoxTests/DI/GrayBoxTestCaseDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/GrayBoxTests/DI/GrayBoxTestCaseDependencies.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/GrayBoxTests/GrayBoxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/GrayBoxTests/GrayBoxTests.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/GrayBoxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/GrayBoxTests/Info.plist -------------------------------------------------------------------------------- /Demos/UiTestsDemo/GrayBoxTests/TestCase/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/GrayBoxTests/TestCase/TestCase.swift -------------------------------------------------------------------------------- /Demos/UiTestsDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/Podfile -------------------------------------------------------------------------------- /Demos/UiTestsDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/Podfile.lock -------------------------------------------------------------------------------- /Demos/UiTestsDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/README.md -------------------------------------------------------------------------------- /Demos/UiTestsDemo/UiTestsDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Demos/UiTestsDemo/UiTestsDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/UiTestsDemo/cocoapods: -------------------------------------------------------------------------------- 1 | ../../cocoapods -------------------------------------------------------------------------------- /Docs/EarlGreyLicense/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/EarlGreyLicense/LICENSE -------------------------------------------------------------------------------- /Docs/Frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/Frameworks.md -------------------------------------------------------------------------------- /Docs/Ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/Ideas.md -------------------------------------------------------------------------------- /Docs/Images/Dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/Images/Dependencies.png -------------------------------------------------------------------------------- /Docs/PrivateApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi.md -------------------------------------------------------------------------------- /Docs/PrivateApi/ClassDump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi/ClassDump.md -------------------------------------------------------------------------------- /Docs/PrivateApi/Disassembling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi/Disassembling.md -------------------------------------------------------------------------------- /Docs/PrivateApi/DumpPy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi/DumpPy.md -------------------------------------------------------------------------------- /Docs/PrivateApi/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi/Examples.md -------------------------------------------------------------------------------- /Docs/PrivateApi/ExploringSimulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi/ExploringSimulator.md -------------------------------------------------------------------------------- /Docs/PrivateApi/FixingInjectionOfEventsExample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi/FixingInjectionOfEventsExample.md -------------------------------------------------------------------------------- /Docs/PrivateApi/Runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/PrivateApi/Runtime.md -------------------------------------------------------------------------------- /Docs/SettingThingsUp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/SettingThingsUp.md -------------------------------------------------------------------------------- /Docs/TestingPyramid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Docs/TestingPyramid.md -------------------------------------------------------------------------------- /Frameworks/AnyCodable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/AnyCodable/README.md -------------------------------------------------------------------------------- /Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/AnyCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/AnyCodable.swift -------------------------------------------------------------------------------- /Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/AnyDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/AnyDecodable.swift -------------------------------------------------------------------------------- /Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/AnyEncodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/AnyEncodable.swift -------------------------------------------------------------------------------- /Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/AnyCodable/Sources/FlightSchoolAnyCodable/LICENSE.md -------------------------------------------------------------------------------- /Frameworks/Black/Sources/Di/TopLevel/SingleAppBlackBoxDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Black/Sources/Di/TopLevel/SingleAppBlackBoxDependencies.swift -------------------------------------------------------------------------------- /Frameworks/Black/Sources/Extensions/CGRect+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Black/Sources/Extensions/CGRect+Hashable.swift -------------------------------------------------------------------------------- /Frameworks/Black/Sources/Extensions/ObjcVisibilityWorkaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Black/Sources/Extensions/ObjcVisibilityWorkaround.h -------------------------------------------------------------------------------- /Frameworks/Black/Sources/Extensions/XCUIElement+EnhancedValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Black/Sources/Extensions/XCUIElement+EnhancedValue.swift -------------------------------------------------------------------------------- /Frameworks/Black/Sources/PrivateHeaders/PrivateHeaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Black/Sources/PrivateHeaders/PrivateHeaders.md -------------------------------------------------------------------------------- /Frameworks/Black/Sources/Utils/AlwaysFailingIpcClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Black/Sources/Utils/AlwaysFailingIpcClient.swift -------------------------------------------------------------------------------- /Frameworks/Black/Sources/XcuiPageObjectDependenciesFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Black/Sources/XcuiPageObjectDependenciesFactory.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinDi/Sources/Support/HashableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinDi/Sources/Support/HashableType.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/README.md -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Client/IpcClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Client/IpcClientImpl.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/BonjourServiceSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/BonjourServiceSettings.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Callback/Callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Callback/Callbacks.md -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Callback/IpcCallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Callback/IpcCallback.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Coding/DecoderFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Coding/DecoderFactory.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Coding/DecoderFactoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Coding/DecoderFactoryImpl.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Coding/EncoderFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Coding/EncoderFactory.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Coding/EncoderFactoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Coding/EncoderFactoryImpl.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Constants.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Handshaking/Handshaking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Handshaking/Handshaking.md -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/MethodNameContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/MethodNameContainer.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/RequestContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/RequestContainer.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/ResponseContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/ResponseContainer.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Common/Routes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Common/Routes.swift -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Server/GCDWebServerErrorResponse+Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Server/GCDWebServerErrorResponse+Swift.h -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Server/GCDWebServerErrorResponse+Swift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Server/GCDWebServerErrorResponse+Swift.m -------------------------------------------------------------------------------- /Frameworks/BuiltinIpc/Sources/Server/IpcRouterImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/BuiltinIpc/Sources/Server/IpcRouterImpl.swift -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/README.md -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/CocoaImageHashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/CocoaImageHashing.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSAHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSAHash.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSAHash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSAHash.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSAbstractHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSAbstractHash.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSAbstractHash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSAbstractHash.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSCategories.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSCategories.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSCategories.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSDHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSDHash.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSDHash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSDHash.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSFastGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSFastGraphics.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSFastGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSFastGraphics.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSImageHashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSImageHashing.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSImageHashing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSImageHashing.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSPHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSPHash.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSPHash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSPHash.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSSimilaritySearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSSimilaritySearch.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSSimilaritySearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSSimilaritySearch.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSTypes+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSTypes+Internal.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSTypes.h -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/OSTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/OSTypes.m -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/CocoaImageHashing/Sources/include/module.modulemap -------------------------------------------------------------------------------- /Frameworks/CocoaImageHashing/Sources/shim.h: -------------------------------------------------------------------------------- 1 | #import "CocoaImageHashing.h" 2 | -------------------------------------------------------------------------------- /Frameworks/Di/Sources/DependencyInjection/DependencyInjection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Di/Sources/DependencyInjection/DependencyInjection.swift -------------------------------------------------------------------------------- /Frameworks/Di/Sources/DependencyRegisterer/DependencyRegisterer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Di/Sources/DependencyRegisterer/DependencyRegisterer.swift -------------------------------------------------------------------------------- /Frameworks/Di/Sources/DependencyResolver/DependencyResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Di/Sources/DependencyResolver/DependencyResolver.swift -------------------------------------------------------------------------------- /Frameworks/Di/Sources/DependencyResolver/WeakDependencyResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Di/Sources/DependencyResolver/WeakDependencyResolver.swift -------------------------------------------------------------------------------- /Frameworks/Di/Sources/Models/DiError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Di/Sources/Models/DiError.swift -------------------------------------------------------------------------------- /Frameworks/Di/Sources/Models/Scope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Di/Sources/Models/Scope.swift -------------------------------------------------------------------------------- /Frameworks/FakeSettingsAppMain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/FakeSettingsAppMain/README.md -------------------------------------------------------------------------------- /Frameworks/FakeSettingsAppMain/Sources/Application/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/FakeSettingsAppMain/Sources/Application/AppDelegate.h -------------------------------------------------------------------------------- /Frameworks/FakeSettingsAppMain/Sources/Application/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/FakeSettingsAppMain/Sources/Application/AppDelegate.m -------------------------------------------------------------------------------- /Frameworks/Foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/README.md -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Casting/mb_cast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Casting/mb_cast.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Collections/IteratorOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Collections/IteratorOf.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Concurrency/OnceToken/OnceToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Concurrency/OnceToken/OnceToken.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Date/DateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Date/DateProvider.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Date/SystemClockDateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Date/SystemClockDateProvider.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Errors/ErrorString+Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Errors/ErrorString+Map.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Errors/ErrorString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Errors/ErrorString.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Errors/UnsupportedEnumCaseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Errors/UnsupportedEnumCaseError.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/Collection+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/Collection+Extension.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/NSLock+LockWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/NSLock+LockWhile.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/Optional+Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/Optional+Map.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/Optional+Unwrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/Optional+Unwrap.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/String+Conversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/String+Conversion.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/String+Indentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/String+Indentation.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/String+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/String+Path.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/Zip/Sequence+Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/Zip/Sequence+Zip.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Extensions/Zip/ZippedSequences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Extensions/Zip/ZippedSequences.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/MemoryManagement/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/MemoryManagement/Box.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/MemoryManagement/MutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/MemoryManagement/MutableBox.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/MemoryManagement/WeakBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/MemoryManagement/WeakBox.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Serialization/GenericSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Serialization/GenericSerialization.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Swizzling/Models/MethodType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Swizzling/Models/MethodType.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Swizzling/Models/SwizzlingResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Swizzling/Models/SwizzlingResult.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Swizzling/Swizzler/Swizzler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Swizzling/Swizzler/Swizzler.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Swizzling/Swizzler/SwizzlerImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Swizzling/Swizzler/SwizzlerImpl.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Types/AnyEquatable/AnyEquatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Types/AnyEquatable/AnyEquatable.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Types/FileLine/FileLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Types/FileLine/FileLine.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Types/FileLine/RuntimeFileLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Types/FileLine/RuntimeFileLine.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Types/OptionalAvailability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Types/OptionalAvailability.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Types/Result/DataResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Types/Result/DataResult.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Waiter/RunLoopSpinningWaiter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Waiter/RunLoopSpinningWaiter.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Waiter/RunLoopSpinningWaiterImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Waiter/RunLoopSpinningWaiterImpl.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Waiter/Waiter+While.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Waiter/Waiter+While.swift -------------------------------------------------------------------------------- /Frameworks/Foundation/Sources/Waiter/Waiter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Foundation/Sources/Waiter/Waiter.swift -------------------------------------------------------------------------------- /Frameworks/Generators/Sources/AnyGenerator/AnyGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Generators/Sources/AnyGenerator/AnyGenerator.swift -------------------------------------------------------------------------------- /Frameworks/Generators/Sources/AnyGenerator/AnyGeneratorImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Generators/Sources/AnyGenerator/AnyGeneratorImpl.swift -------------------------------------------------------------------------------- /Frameworks/Generators/Sources/Fields/FailableProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Generators/Sources/Fields/FailableProperty.swift -------------------------------------------------------------------------------- /Frameworks/Generators/Sources/Fields/Fields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Generators/Sources/Fields/Fields.swift -------------------------------------------------------------------------------- /Frameworks/Generators/Sources/Generator/Generator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Generators/Sources/Generator/Generator.swift -------------------------------------------------------------------------------- /Frameworks/Generators/Sources/Generator/Random/OverflowingUInt64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Generators/Sources/Generator/Random/OverflowingUInt64.swift -------------------------------------------------------------------------------- /Frameworks/Generators/Sources/Generator/Support/GeneratorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Generators/Sources/Generator/Support/GeneratorError.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Di/Registerers/GrayBoxDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Di/Registerers/GrayBoxDependencies.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/CodeStubs/CodeStubs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/CodeStubs/CodeStubs.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/GrayApplicationFrameProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/GrayApplicationFrameProvider.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/GrayApplicationStateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/GrayApplicationStateProvider.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/MenuItem/GrayMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/MenuItem/GrayMenuItem.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/MenuItem/GrayMenuItemProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/MenuItem/GrayMenuItemProvider.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/Networking/GrayBoxLegacyNetworking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/Networking/GrayBoxLegacyNetworking.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/PrivateHeaders/AppleInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/PrivateHeaders/AppleInternals.h -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/Screenshots/GrayScreenshotTaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/Screenshots/GrayScreenshotTaker.swift -------------------------------------------------------------------------------- /Frameworks/Gray/Sources/Utils/TextTyper/GrayTextTyper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Gray/Sources/Utils/TextTyper/GrayTextTyper.swift -------------------------------------------------------------------------------- /Frameworks/InAppServices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/InAppServices/README.md -------------------------------------------------------------------------------- /Frameworks/InAppServices/Sources/InAppServices/InAppServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/InAppServices/Sources/InAppServices/InAppServices.swift -------------------------------------------------------------------------------- /Frameworks/InAppServices/Sources/InAppServices/InAppServicesImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/InAppServices/Sources/InAppServices/InAppServicesImpl.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/README.md -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/ByType/BaseDigitizerEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/ByType/BaseDigitizerEvent.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/ByType/DigitizerEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/ByType/DigitizerEvent.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/ByType/DigitizerFingerEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/ByType/DigitizerFingerEvent.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/ByType/KeyboardEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/ByType/KeyboardEvent.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/Event.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/Fields/EventFieldsByValueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/Fields/EventFieldsByValueType.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/Fields/EventFloatFields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/Fields/EventFloatFields.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/Fields/EventIntegerFields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/Fields/EventIntegerFields.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/Events/Fields/EventPositionFields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/Events/Fields/EventPositionFields.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/IOKitExtensions/EnumRawValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/IOKitExtensions/EnumRawValues.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/IOKitExtensions/EnumRawValues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/IOKitExtensions/EnumRawValues.m -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/MBIohidEventSender/MBIohidEventSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/MBIohidEventSender/MBIohidEventSender.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/MBIohidEventSender/MBIohidEventSender.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/MBIohidEventSender/MBIohidEventSender.mm -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/CoreFoundation/CFRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/CoreFoundation/CFRuntime.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/IOCFPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/IOCFPlugIn.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/IOKitKeys.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/IOMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/IOMessage.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/IOReturn.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/IOTypes.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/OSKext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/OSKext.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/OSMessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/OSMessageNotification.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDDisplay.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEvent.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventData.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventField.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventQueue.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventSystem.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventSystemClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventSystemClient.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDEventTypes.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDNotification.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDService.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDSession.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDUserDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/hid/IOHIDUserDevice.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/iokitmig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/iokitmig.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/ps/IOPSKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/ps/IOPSKeys.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/ps/IOPowerSources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/ps/IOPowerSources.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/ps/IOUPSPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/ps/IOUPSPlugIn.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPM.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPMKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPMKeys.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPMLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPMLib.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPMLibDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/PrivateApi/IOKit/pwr_mgt/IOPMLibDefs.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/SoftLinking/SoftLinking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/SoftLinking/SoftLinking.h -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/TypeWrappers/ButtonMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/TypeWrappers/ButtonMask.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/TypeWrappers/DigitizerEventMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/TypeWrappers/DigitizerEventMask.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/TypeWrappers/DigitizerTransducerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/TypeWrappers/DigitizerTransducerType.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/TypeWrappers/EventOptionBits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/TypeWrappers/EventOptionBits.swift -------------------------------------------------------------------------------- /Frameworks/IoKit/Sources/TypeWrappers/EventType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IoKit/Sources/TypeWrappers/EventType.swift -------------------------------------------------------------------------------- /Frameworks/Ipc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Ipc/README.md -------------------------------------------------------------------------------- /Frameworks/Ipc/Sources/Client/IpcClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Ipc/Sources/Client/IpcClient.swift -------------------------------------------------------------------------------- /Frameworks/Ipc/Sources/Client/Synchronous/SynchronousIpcClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Ipc/Sources/Client/Synchronous/SynchronousIpcClient.swift -------------------------------------------------------------------------------- /Frameworks/Ipc/Sources/Model/IpcVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Ipc/Sources/Model/IpcVoid.swift -------------------------------------------------------------------------------- /Frameworks/Ipc/Sources/Router/IpcMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Ipc/Sources/Router/IpcMethod.swift -------------------------------------------------------------------------------- /Frameworks/Ipc/Sources/Router/IpcMethodHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Ipc/Sources/Router/IpcMethodHandler.swift -------------------------------------------------------------------------------- /Frameworks/Ipc/Sources/Router/IpcRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Ipc/Sources/Router/IpcRouter.swift -------------------------------------------------------------------------------- /Frameworks/IpcCommon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcCommon/README.md -------------------------------------------------------------------------------- /Frameworks/IpcCommon/Sources/Features/OpenUrl/OpenUrlIpcMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcCommon/Sources/Features/OpenUrl/OpenUrlIpcMethod.swift -------------------------------------------------------------------------------- /Frameworks/IpcCommon/Sources/Features/Scrolling/ScrollingHint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcCommon/Sources/Features/Scrolling/ScrollingHint.swift -------------------------------------------------------------------------------- /Frameworks/IpcCommon/Sources/Support/IpcObject/IpcObjectId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcCommon/Sources/Support/IpcObject/IpcObjectId.swift -------------------------------------------------------------------------------- /Frameworks/IpcCommon/Sources/Support/IpcStarter/IpcStarterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcCommon/Sources/Support/IpcStarter/IpcStarterType.swift -------------------------------------------------------------------------------- /Frameworks/IpcSbtuiClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcSbtuiClient/README.md -------------------------------------------------------------------------------- /Frameworks/IpcSbtuiClient/Sources/SbtuiIpcClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcSbtuiClient/Sources/SbtuiIpcClient.swift -------------------------------------------------------------------------------- /Frameworks/IpcSbtuiHost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcSbtuiHost/README.md -------------------------------------------------------------------------------- /Frameworks/IpcSbtuiHost/Sources/SbtuiCustomCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcSbtuiHost/Sources/SbtuiCustomCommand.swift -------------------------------------------------------------------------------- /Frameworks/IpcSbtuiHost/Sources/SbtuiIpcRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/IpcSbtuiHost/Sources/SbtuiIpcRouter.swift -------------------------------------------------------------------------------- /Frameworks/LinkXCTAutomationSupport/Sources/AutomationInfrastructureIntegrationTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Templates/AllMocksTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Templates/AllMocksTemplate.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Templates/MockTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Templates/MockTemplate.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Templates/Utils/Snippets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Templates/Utils/Snippets.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/AttributeName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/AttributeName.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/Bool+ToOptional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/Bool+ToOptional.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/Collection+Render.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/Collection+Render.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/ErrorString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/ErrorString.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/Method+Generic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/Method+Generic.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/Models/GenericParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/Models/GenericParameter.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/NameCollisionAvoidance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/NameCollisionAvoidance.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/Optional+ConvertEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/Optional+ConvertEmpty.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/Optional+Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/Optional+Map.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/String+Indent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/String+Indent.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/String+Regex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/String+Regex.swift -------------------------------------------------------------------------------- /Frameworks/MocksGeneration/Sources/Utils/Type+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksGeneration/Sources/Utils/Type+Extensions.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Manager/MockManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Manager/MockManager.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Manager/MockManagerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Manager/MockManagerFactory.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Manager/MockManagerImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Manager/MockManagerImpl.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Mock/BaseMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Mock/BaseMock.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Mock/Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Mock/Mock.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Mock/MockInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Mock/MockInfo.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Mock/MockInfoProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Mock/MockInfoProvider.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Mock/MockManagerProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Mock/MockManagerProvider.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Mock/MockManagerSettable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Mock/MockManagerSettable.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Mock/StorableMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Mock/StorableMock.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Registration/MockRegisterer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Registration/MockRegisterer.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Registration/MockRegistererImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Registration/MockRegistererImpl.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Utility/FunctionIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Utility/FunctionIdentifier.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Utility/MigrationFromCuckoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Utility/MigrationFromCuckoo.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Utility/MixboxMocksRuntimeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Utility/MixboxMocksRuntimeVoid.swift -------------------------------------------------------------------------------- /Frameworks/MocksRuntime/Sources/Utility/ThrowingFunctionResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/MocksRuntime/Sources/Utility/ThrowingFunctionResult.swift -------------------------------------------------------------------------------- /Frameworks/Reflection/Sources/CodeGeneration/ValueCodeGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Reflection/Sources/CodeGeneration/ValueCodeGenerator.swift -------------------------------------------------------------------------------- /Frameworks/Reflection/Sources/Utilities/ValueIsObjectChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Reflection/Sources/Utilities/ValueIsObjectChecker.swift -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelClient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelClient/LICENSE -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelClient/README.md -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelClient/Sources/SBTUITunneledApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelClient/Sources/SBTUITunneledApplication.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelClient/Sources/SBTUITunneledApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelClient/Sources/SBTUITunneledApplication.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/LICENSE -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/README.md -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/NSString+SwiftDemangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/NSString+SwiftDemangle.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/NSString+SwiftDemangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/NSString+SwiftDemangle.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/NSURLRequest+HTTPBodyFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/NSURLRequest+HTTPBodyFix.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/NSURLRequest+HTTPBodyFix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/NSURLRequest+HTTPBodyFix.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTMonitoredNetworkRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTMonitoredNetworkRequest.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTMonitoredNetworkRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTMonitoredNetworkRequest.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTRequestMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTRequestMatch.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTRequestMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTRequestMatch.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTRewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTRewrite.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTRewrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTRewrite.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTStubResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTStubResponse.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTStubResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTStubResponse.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTSwizzleHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTSwizzleHelpers.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTUITestTunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTUITestTunnel.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelCommon/Sources/SBTUITestTunnel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelCommon/Sources/SBTUITestTunnel.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/LICENSE -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/README.md -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/NSData+SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/NSData+SHA1.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/NSData+SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/NSData+SHA1.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/NSURLSession+HTTPBodyFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/NSURLSession+HTTPBodyFix.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/NSURLSession+HTTPBodyFix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/NSURLSession+HTTPBodyFix.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/SBTProxyURLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/SBTProxyURLProtocol.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/SBTProxyURLProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/SBTProxyURLProtocol.m -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/SBTUITestTunnelServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/SBTUITestTunnelServer.h -------------------------------------------------------------------------------- /Frameworks/SBTUITestTunnelServer/Sources/SBTUITestTunnelServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/SBTUITestTunnelServer/Sources/SBTUITestTunnelServer.m -------------------------------------------------------------------------------- /Frameworks/Stubbing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Stubbing/README.md -------------------------------------------------------------------------------- /Frameworks/Stubbing/Sources/DI/MixboxStubbingDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Stubbing/Sources/DI/MixboxStubbingDependencies.swift -------------------------------------------------------------------------------- /Frameworks/Testability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Testability/README.md -------------------------------------------------------------------------------- /Frameworks/Testability/Sources/CustomValues/GenericSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Testability/Sources/CustomValues/GenericSerialization.swift -------------------------------------------------------------------------------- /Frameworks/Testability/Sources/CustomValues/View+CustomValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Testability/Sources/CustomValues/View+CustomValues.swift -------------------------------------------------------------------------------- /Frameworks/Testability/Sources/FakeCells/FakeCellInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Testability/Sources/FakeCells/FakeCellInfo.swift -------------------------------------------------------------------------------- /Frameworks/Testability/Sources/FakeCells/ObjCInterfacesForFakeCells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Testability/Sources/FakeCells/ObjCInterfacesForFakeCells.h -------------------------------------------------------------------------------- /Frameworks/Testability/Sources/Support/MixboxTestability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Testability/Sources/Support/MixboxTestability.h -------------------------------------------------------------------------------- /Frameworks/Testability/Sources/Support/WeakBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/Testability/Sources/Support/WeakBox.swift -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/README.md -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/Di/Facade/TestCaseDi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/Sources/Di/Facade/TestCaseDi.swift -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/Matching/Matchers/Matcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/Sources/Matching/Matchers/Matcher.swift -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/Network/IpcRouterProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/Sources/Network/IpcRouterProvider.swift -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/Network/README.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | Remove IPC from white and gray box testing 4 | -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/PrivateHeaders/Classdump/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/Sources/PrivateHeaders/Classdump/dump.py -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/PrivateHeaders/Manual/XCTest/DTXConnection/Xcode_15_0_DTXConnection.h: -------------------------------------------------------------------------------- 1 | @interface DTXConnection: NSObject 2 | @end 3 | -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/Reporting/Stepping/StepLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/Sources/Reporting/Stepping/StepLogger.swift -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/Reporting/Stepping/Stepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/Sources/Reporting/Stepping/Stepper.swift -------------------------------------------------------------------------------- /Frameworks/TestsFoundation/Sources/Reporting/TestFailureRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/TestsFoundation/Sources/Reporting/TestFailureRecorder.swift -------------------------------------------------------------------------------- /Frameworks/UiKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/UiKit/README.md -------------------------------------------------------------------------------- /Frameworks/UiKit/Sources/Extensions/UIKit/UIDevice+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/UiKit/Sources/Extensions/UIKit/UIDevice+Extension.swift -------------------------------------------------------------------------------- /Frameworks/UiKit/Sources/Extensions/UIKit/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/UiKit/Sources/Extensions/UIKit/UIView+Extensions.swift -------------------------------------------------------------------------------- /Frameworks/UiKit/Sources/IosVersion/IosVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/UiKit/Sources/IosVersion/IosVersion.swift -------------------------------------------------------------------------------- /Frameworks/UiTestsFoundation/Sources/IpcClients/IpcClients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/UiTestsFoundation/Sources/IpcClients/IpcClients.md -------------------------------------------------------------------------------- /Frameworks/UiTestsFoundation/Sources/PageObject/PageObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/UiTestsFoundation/Sources/PageObject/PageObject.swift -------------------------------------------------------------------------------- /Frameworks/UiTestsFoundation/Sources/PageObjectElement/Element.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Frameworks/UiTestsFoundation/Sources/PageObjectElement/Element.swift -------------------------------------------------------------------------------- /Helper/MixboxHelper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Helper/MixboxHelper.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Helper/MixboxHelper/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper/AppDelegate.swift -------------------------------------------------------------------------------- /Helper/MixboxHelper/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Helper/MixboxHelper/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Helper/MixboxHelper/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Helper/MixboxHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper/Info.plist -------------------------------------------------------------------------------- /Helper/MixboxHelper/MixboxHelper.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper/MixboxHelper.entitlements -------------------------------------------------------------------------------- /Helper/MixboxHelper/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelper/ViewController.swift -------------------------------------------------------------------------------- /Helper/MixboxHelperTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelperTests/Info.plist -------------------------------------------------------------------------------- /Helper/MixboxHelperUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/MixboxHelperUITests/Info.plist -------------------------------------------------------------------------------- /Helper/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/Podfile -------------------------------------------------------------------------------- /Helper/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Helper/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | %: 2 | ./make.sh $@ 3 | .PHONY: % -------------------------------------------------------------------------------- /Mixbox.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Mixbox.podspec -------------------------------------------------------------------------------- /MixboxAnyCodable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxAnyCodable.podspec -------------------------------------------------------------------------------- /MixboxBlack.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxBlack.podspec -------------------------------------------------------------------------------- /MixboxBuiltinDi.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxBuiltinDi.podspec -------------------------------------------------------------------------------- /MixboxBuiltinIpc.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxBuiltinIpc.podspec -------------------------------------------------------------------------------- /MixboxCocoaImageHashing.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxCocoaImageHashing.podspec -------------------------------------------------------------------------------- /MixboxDi.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxDi.podspec -------------------------------------------------------------------------------- /MixboxFakeSettingsAppMain.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxFakeSettingsAppMain.podspec -------------------------------------------------------------------------------- /MixboxFoundation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxFoundation.podspec -------------------------------------------------------------------------------- /MixboxGenerators.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxGenerators.podspec -------------------------------------------------------------------------------- /MixboxGray.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxGray.podspec -------------------------------------------------------------------------------- /MixboxInAppServices.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxInAppServices.podspec -------------------------------------------------------------------------------- /MixboxIoKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxIoKit.podspec -------------------------------------------------------------------------------- /MixboxIpc.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxIpc.podspec -------------------------------------------------------------------------------- /MixboxIpcCommon.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxIpcCommon.podspec -------------------------------------------------------------------------------- /MixboxIpcSbtuiClient.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxIpcSbtuiClient.podspec -------------------------------------------------------------------------------- /MixboxIpcSbtuiHost.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxIpcSbtuiHost.podspec -------------------------------------------------------------------------------- /MixboxLinkXCTAutomationSupport.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxLinkXCTAutomationSupport.podspec -------------------------------------------------------------------------------- /MixboxMocksGeneration.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxMocksGeneration.podspec -------------------------------------------------------------------------------- /MixboxMocksRuntime.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxMocksRuntime.podspec -------------------------------------------------------------------------------- /MixboxReflection.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxReflection.podspec -------------------------------------------------------------------------------- /MixboxSBTUITestTunnelClient.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxSBTUITestTunnelClient.podspec -------------------------------------------------------------------------------- /MixboxSBTUITestTunnelCommon.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxSBTUITestTunnelCommon.podspec -------------------------------------------------------------------------------- /MixboxSBTUITestTunnelServer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxSBTUITestTunnelServer.podspec -------------------------------------------------------------------------------- /MixboxStubbing.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxStubbing.podspec -------------------------------------------------------------------------------- /MixboxTestability.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxTestability.podspec -------------------------------------------------------------------------------- /MixboxTestsFoundation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxTestsFoundation.podspec -------------------------------------------------------------------------------- /MixboxUiKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxUiKit.podspec -------------------------------------------------------------------------------- /MixboxUiTestsFoundation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MixboxUiTestsFoundation.podspec -------------------------------------------------------------------------------- /MocksGenerator/Sources/MixboxMocksGenerator/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/MocksGenerator/Sources/MixboxMocksGenerator/main.swift -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Package.swift -------------------------------------------------------------------------------- /Package.template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Package.template.swift -------------------------------------------------------------------------------- /PackageGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/PackageGenerator.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/README.md -------------------------------------------------------------------------------- /Tests/AllTestsShared/AllTestsSharedBridgingHeader.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/AllTestsShared/CGImage+Stub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/CGImage+Stub.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/Cuckoo/CuckooMatchers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/Cuckoo/CuckooMatchers.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase+AssertThrows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase+AssertThrows.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase/BaseTestCase+AssertLogsAndFailures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase/BaseTestCase+AssertLogsAndFailures.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase/BaseTestCase+Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase/BaseTestCase+Logging.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase/BaseTestCase+ResolveFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase/BaseTestCase+ResolveFunctions.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase/BaseTestCase+ValuesByIosVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase/BaseTestCase+ValuesByIosVersion.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase/BaseTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase/BaseTestCase.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase/Singletons/Singletons+StepLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase/Singletons/Singletons+StepLogger.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestCase/TestCaseDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestCase/TestCaseDependencies.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestType.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestingFails/Combined/LogsAndFailures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestingFails/Combined/LogsAndFailures.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestingFails/Failures/FailureGatherer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestingFails/Failures/FailureGatherer.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestingFails/Failures/GatherFailuresResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestingFails/Failures/GatherFailuresResult.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestingFails/Failures/XcTestFailure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestingFails/Failures/XcTestFailure.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestingFails/Logs/RecordableStepLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestingFails/Logs/RecordableStepLogger.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/TestingFails/Logs/RecordingStepLoggerImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/TestingFails/Logs/RecordingStepLoggerImpl.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/UIColor+RGB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/UIColor+RGB.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/UIImage+Stub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/UIImage+Stub.swift -------------------------------------------------------------------------------- /Tests/AllTestsShared/ValuesByIosVersion/ValuesByIosVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AllTestsShared/ValuesByIosVersion/ValuesByIosVersion.swift -------------------------------------------------------------------------------- /Tests/AppAndTestsShared/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppAndTestsShared/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/AppAndTestsShared/Media.xcassets/eva_icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppAndTestsShared/Media.xcassets/eva_icons/Contents.json -------------------------------------------------------------------------------- /Tests/AppAndTestsShared/Media.xcassets/eva_icons/fill/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppAndTestsShared/Media.xcassets/eva_icons/fill/Contents.json -------------------------------------------------------------------------------- /Tests/AppAndTestsShared/Media.xcassets/eva_icons/outline/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppAndTestsShared/Media.xcassets/eva_icons/outline/Contents.json -------------------------------------------------------------------------------- /Tests/AppAndTestsShared/Media.xcassets/imagehash_cats/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppAndTestsShared/Media.xcassets/imagehash_cats/Contents.json -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctest/AppDelegate.swift -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/HidEventsDebugging/AppForCheckingPureXctest-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "PrivateApi.h" 2 | -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/HidEventsDebugging/PrivateApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctest/HidEventsDebugging/PrivateApi.h -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctest/Info.plist -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctest/View.swift -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctest/ViewController.swift -------------------------------------------------------------------------------- /Tests/AppForCheckingPureXctestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/AppForCheckingPureXctestUITests/Info.plist -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/BlackBoxUiTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/BlackBoxUiTests-Bridging-Header.h -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Info.plist -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Support/BlackBoxTestCaseDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Support/BlackBoxTestCaseDependencies.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Support/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Support/TestCase.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/FakeCells/FakeCellsDisablingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Tests/FakeCells/FakeCellsDisablingTests.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/IPC/Echoing/BaseIpcEchoingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Tests/IPC/Echoing/BaseIpcEchoingTests.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/IPC/IpcCallbacksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Tests/IPC/IpcCallbacksTests.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/LaunchingApp/LaunchingAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Tests/LaunchingApp/LaunchingAppTests.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/Network/Player/Showcase/NetworkPlayerShowcaseTests.alwaysEmpty.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/Scrolling/ScrollingSmokeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Tests/Scrolling/ScrollingSmokeTests.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/Tools/ApplicationBundleProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Tests/Tools/ApplicationBundleProviderTests.swift -------------------------------------------------------------------------------- /Tests/BlackBoxUiTests/Tests/Tools/PhotoStubberTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/BlackBoxUiTests/Tests/Tools/PhotoStubberTests.swift -------------------------------------------------------------------------------- /Tests/FakeSettingsApp/Entitlements.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/FakeSettingsApp/Entitlements.entitlements -------------------------------------------------------------------------------- /Tests/FakeSettingsApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/FakeSettingsApp/Info.plist -------------------------------------------------------------------------------- /Tests/FakeSettingsApp/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/FakeSettingsApp/main.swift -------------------------------------------------------------------------------- /Tests/Frameworks/TestsIpc/Sources/GlobalIpc/Echo/EchoIpcMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Frameworks/TestsIpc/Sources/GlobalIpc/Echo/EchoIpcMethod.swift -------------------------------------------------------------------------------- /Tests/Frameworks/TestsIpc/Sources/Singletons/Singletons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Frameworks/TestsIpc/Sources/Singletons/Singletons.swift -------------------------------------------------------------------------------- /Tests/Frameworks/TestsIpc/Sources/ViewIpc/IpcTestingView/IpcView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Frameworks/TestsIpc/Sources/ViewIpc/IpcTestingView/IpcView.swift -------------------------------------------------------------------------------- /Tests/Frameworks/TestsIpc/TestsIpc.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Frameworks/TestsIpc/TestsIpc.podspec -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/GrayBoxUiTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/GrayBoxUiTests-Bridging-Header.h -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Info.plist -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Mocks/generate_mocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Mocks/generate_mocks -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Support/TestCase/IpcRouterHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Support/TestCase/IpcRouterHolder.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Support/TestCase/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Support/TestCase/TestCase.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Tests/IpcTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Tests/IpcTests.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Tests/KeyboardEventInjectorImplTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Tests/KeyboardEventInjectorImplTests.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Tests/PredefinedObjcMethodsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Tests/PredefinedObjcMethodsTests.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Tests/RunLoopSpinner/RunLoopSpinnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Tests/RunLoopSpinner/RunLoopSpinnerTests.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Tests/Stubbing/NetworkStubbingTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Tests/Stubbing/NetworkStubbingTestCase.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Tests/Stubbing/NetworkStubbingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Tests/Stubbing/NetworkStubbingTests.swift -------------------------------------------------------------------------------- /Tests/GrayBoxUiTests/Tests/screenshotTestsView_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/GrayBoxUiTests/Tests/screenshotTestsView_screenshot.png -------------------------------------------------------------------------------- /Tests/HostedAppLogicTests/HostedAppLogicTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/HostedAppLogicTests/HostedAppLogicTests.swift -------------------------------------------------------------------------------- /Tests/HostedAppLogicTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/HostedAppLogicTests/Info.plist -------------------------------------------------------------------------------- /Tests/HostedAppLogicTests/Support/HostedAppLogicTests-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "AllTestsSharedBridgingHeader.h" 2 | -------------------------------------------------------------------------------- /Tests/HostedAppLogicTests/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/HostedAppLogicTests/TestCase.swift -------------------------------------------------------------------------------- /Tests/Lint/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Lint/Info.plist -------------------------------------------------------------------------------- /Tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Makefile -------------------------------------------------------------------------------- /Tests/OsxUnitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/OsxUnitTests/Info.plist -------------------------------------------------------------------------------- /Tests/OsxUnitTests/Tests/MixboxMockGeneration/SnippetsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/OsxUnitTests/Tests/MixboxMockGeneration/SnippetsTests.swift -------------------------------------------------------------------------------- /Tests/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Podfile -------------------------------------------------------------------------------- /Tests/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Podfile.lock -------------------------------------------------------------------------------- /Tests/Scripts/mock_generation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Scripts/mock_generation.sh -------------------------------------------------------------------------------- /Tests/Scripts/warm_up_code_generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Scripts/warm_up_code_generation -------------------------------------------------------------------------------- /Tests/TestedApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/AppDelegate.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/TestedApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/TestedApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/TestedApp/CustomIpc/CustomIpcMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/CustomIpc/CustomIpcMethods.swift -------------------------------------------------------------------------------- /Tests/TestedApp/CustomIpc/Echo/EchoIpcMethodHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/CustomIpc/Echo/EchoIpcMethodHandler.swift -------------------------------------------------------------------------------- /Tests/TestedApp/CustomIpc/IpcBetweenViewAndTest/ViewIpc+ResetUi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/CustomIpc/IpcBetweenViewAndTest/ViewIpc+ResetUi.swift -------------------------------------------------------------------------------- /Tests/TestedApp/CustomIpc/IpcBetweenViewAndTest/ViewIpc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/CustomIpc/IpcBetweenViewAndTest/ViewIpc.swift -------------------------------------------------------------------------------- /Tests/TestedApp/CustomIpc/SetScreen/SetScreenIpcMethodHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/CustomIpc/SetScreen/SetScreenIpcMethodHandler.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Info.plist -------------------------------------------------------------------------------- /Tests/TestedApp/TestedApp-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/TestedApp-Bridging-Header.h -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/SupportViews/CollectionView/CellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/SupportViews/CollectionView/CellModel.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/SupportViews/TapIndicatorButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/SupportViews/TapIndicatorButton.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/SupportViews/TestStackScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/SupportViews/TestStackScrollView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/SupportViews/ViewsWithClosures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/SupportViews/ViewsWithClosures/README.md -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/ViewControllers/Testing/TestingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/ViewControllers/Testing/TestingView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/ChecksTests/ChecksTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/ChecksTests/ChecksTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/ChecksTests/ExpandingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/ChecksTests/ExpandingView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/CrashTests/CrashTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/CrashTests/CrashTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/DummyForLaunchingUiTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/DummyForLaunchingUiTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/HierarchyTests/HierarchyTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/HierarchyTests/HierarchyTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/IpcTestingView/IpcTestingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/IpcTestingView/IpcTestingView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/Keyboard/SoftwareKeyboardTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/Keyboard/SoftwareKeyboardTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/LocatorsTests/LocatorsTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/LocatorsTests/LocatorsTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/Permissions/PermissionsTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/Permissions/PermissionsTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/SwiftUI/SwiftUIListTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/SwiftUI/SwiftUIListTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/SwiftUI/UIHostingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/SwiftUI/UIHostingView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/TextsTests/TextTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/TextsTests/TextTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Testing/Views/Touches/TouchesTestsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Testing/Views/Touches/TouchesTestsView.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Utils/ApplicationNameProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Utils/ApplicationNameProvider.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Utils/SingleResponseWebServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Utils/SingleResponseWebServer.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Utils/TargetAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Utils/TargetAction.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Utils/UIBarButtonItem+TargetAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Utils/UIBarButtonItem+TargetAction.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Utils/UIView+Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Utils/UIView+Layout.swift -------------------------------------------------------------------------------- /Tests/TestedApp/Utils/ViewWithUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/Utils/ViewWithUtilities.swift -------------------------------------------------------------------------------- /Tests/TestedApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/TestedApp/main.m -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/BlackBoxUiTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/BlackBoxUiTests.xcscheme -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/GrayBoxUiTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/GrayBoxUiTests.xcscheme -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/Lint.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/Lint.xcscheme -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/OsxUnitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/OsxUnitTests.xcscheme -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/PodspecLinting.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/PodspecLinting.xcscheme -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/UnitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/UnitTests.xcscheme -------------------------------------------------------------------------------- /Tests/Tests.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/Tests.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/Tests.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestGetter.h -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestGetter.m -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestQuery.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestSuiteInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestSuiteInfo.h -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestSuiteInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Emcee/RuntimeDump/TestSuiteInfo.m -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Lifecycle/TestObservationEntryPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Lifecycle/TestObservationEntryPoint.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/PageObjects/PageObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/PageObjects/PageObjects.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/PageObjects/Support/Apps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/PageObjects/Support/Apps.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/PageObjects/Support/MainAppScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/PageObjects/Support/MainAppScreen.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/PageObjects/Support/OpenableScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/PageObjects/Support/OpenableScreen.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Reports/README.md -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/TestCase/BaseUiTestCase+Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/TestCase/BaseUiTestCase+Info.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/TestCase/BaseUiTestCase+ResetUi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/TestCase/BaseUiTestCase+ResetUi.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/TestCase/BaseUiTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/TestCase/BaseUiTestCase.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/TestCase/ScreenOpener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/TestCase/ScreenOpener.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/TestCase/UiTestCaseDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/TestCase/UiTestCaseDependencies.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Support/Utils/RedImagesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Support/Utils/RedImagesProvider.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/FakeCells/FakeCellsDoNotCrashAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/FakeCells/FakeCellsDoNotCrashAppTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/FakeCells/FakeCellsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/FakeCells/FakeCellsTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/Ipc/BidirectionalIpcTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/Ipc/BidirectionalIpcTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/Keyboard/SoftwareKeyboardTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/Keyboard/SoftwareKeyboardTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/Performance/LocatorsPerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/Performance/LocatorsPerformanceTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/SwiftUI/SwiftUICustomValuesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/SwiftUI/SwiftUICustomValuesTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/SwiftUI/SwiftUIListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/SwiftUI/SwiftUIListTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/SwiftUI/SwiftUINavigationBarItemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/SwiftUI/SwiftUINavigationBarItemTests.swift -------------------------------------------------------------------------------- /Tests/UiTestsShared/Tests/Visibility/VisibilityCheckTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UiTestsShared/Tests/Visibility/VisibilityCheckTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/FileLineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/FileLineTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Info.plist -------------------------------------------------------------------------------- /Tests/UnitTests/Mocks/Custom/ConstantAnyGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Mocks/Custom/ConstantAnyGenerator.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Mocks/Custom/ConstantRandomNumberProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Mocks/Custom/ConstantRandomNumberProvider.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Mocks/Custom/ElementMatcherBuilderFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Mocks/Custom/ElementMatcherBuilderFactory.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Mocks/Custom/SequenceAnyGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Mocks/Custom/SequenceAnyGenerator.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Mocks/Custom/SequenceRandomNumberProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Mocks/Custom/SequenceRandomNumberProvider.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Mocks/generate_mocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Mocks/generate_mocks -------------------------------------------------------------------------------- /Tests/UnitTests/Support/BaseSerializationTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Support/BaseSerializationTestCase.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Support/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Support/TestCase.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Support/UnitTests-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "AllTestsSharedBridgingHeader.h" 2 | -------------------------------------------------------------------------------- /Tests/UnitTests/Support/WhiteBoxTestCaseDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Support/WhiteBoxTestCaseDependencies.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSAHashTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSAHashTests.m -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSDHashTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSDHashTests.m -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSFastGraphicsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSFastGraphicsTests.m -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSImageHashingBaseTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSImageHashingBaseTest.h -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSImageHashingBaseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSImageHashingBaseTest.m -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSPHashTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxCocoaImageHashing/OSPHashTests.m -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxDi/CompoundDependencyResolverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxDi/CompoundDependencyResolverTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxFoundation/CollectionExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxFoundation/CollectionExtensionTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxFoundation/GenericSerializationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxFoundation/GenericSerializationTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxFoundation/String_Indentation_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxFoundation/String_Indentation_Tests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxFoundation/UnwrapOrThrowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxFoundation/UnwrapOrThrowTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxGenerator/Generator/GeneratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxGenerator/Generator/GeneratorTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxGray/MultiTouchEventFactoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxGray/MultiTouchEventFactoryTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxInAppServices/ImagePixelDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxInAppServices/ImagePixelDataTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxIoKit/BaseEventTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxIoKit/BaseEventTestCase.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxIoKit/DigitizerEventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxIoKit/DigitizerEventTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxIoKit/DigitizerFingerEventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxIoKit/DigitizerFingerEventTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxIoKit/EventOptionBitsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxIoKit/EventOptionBitsTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxMocksRuntime/Models/Completion.swift: -------------------------------------------------------------------------------- 1 | public typealias Completion = () -> () 2 | -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxReflection/ValueIsObjectCheckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/Tests/UnitTests/Tests/MixboxReflection/ValueIsObjectCheckerTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxTestsFoundation/BundleResourcePathProvider/BundleResourcePathProviderImplTests.with.lots.of.dots.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxTestsFoundation/BundleResourcePathProvider/BundleResourcePathProviderImplTests_with_extension.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxTestsFoundation/BundleResourcePathProvider/BundleResourcePathProviderImplTests_without_extension_json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /Tests/UnitTests/Tests/MixboxUiTestsFoundation/AutomaticRecorderAndReplayerCreationSettingsProvider/AutomaticRecorderAndReplayerCreationSettingsProviderImplTests.empty.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ci/bash/bash_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/bash_ci.sh -------------------------------------------------------------------------------- /ci/bash/include/bash_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/bash_utils.sh -------------------------------------------------------------------------------- /ci/bash/include/ci_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/ci_integration.sh -------------------------------------------------------------------------------- /ci/bash/include/ci_integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/bash/include/ci_integration/base_ci_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/ci_integration/base_ci_integration.sh -------------------------------------------------------------------------------- /ci/bash/include/ci_integration/no_ci_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/ci_integration/no_ci_integration.sh -------------------------------------------------------------------------------- /ci/bash/include/ci_integration/teamcity_ci_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/ci_integration/teamcity_ci_integration.sh -------------------------------------------------------------------------------- /ci/bash/include/error_handling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/error_handling.sh -------------------------------------------------------------------------------- /ci/bash/include/install_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/install_python.sh -------------------------------------------------------------------------------- /ci/bash/include/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/python.sh -------------------------------------------------------------------------------- /ci/bash/include/swift_package_manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/swift_package_manager.sh -------------------------------------------------------------------------------- /ci/bash/include/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/bash/include/utils.sh -------------------------------------------------------------------------------- /ci/builds/check_bumping_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/builds/check_bumping_version -------------------------------------------------------------------------------- /ci/builds/push_specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/builds/push_specs -------------------------------------------------------------------------------- /ci/destinations/all_destinations_for_pr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/destinations/all_destinations_for_pr.json -------------------------------------------------------------------------------- /ci/destinations/single_destination_for_pr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/destinations/single_destination_for_pr.json -------------------------------------------------------------------------------- /ci/gemfiles/Gemfile_cocoapods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/gemfiles/Gemfile_cocoapods -------------------------------------------------------------------------------- /ci/gemfiles/Gemfile_cocoapods.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/gemfiles/Gemfile_cocoapods.lock -------------------------------------------------------------------------------- /ci/swift/.emceeversion: -------------------------------------------------------------------------------- 1 | 59e268714064177f15ad4a45ff7c0dec6405d884 2 | -------------------------------------------------------------------------------- /ci/swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/.gitignore -------------------------------------------------------------------------------- /ci/swift/MakePackage/Package.swift.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/MakePackage/Package.swift.template -------------------------------------------------------------------------------- /ci/swift/MakePackage/make_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/MakePackage/make_package.py -------------------------------------------------------------------------------- /ci/swift/MakePackage/requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2>=3.0.1 -------------------------------------------------------------------------------- /ci/swift/Makefile: -------------------------------------------------------------------------------- 1 | %: 2 | ./make.sh $@ 3 | .PHONY: % -------------------------------------------------------------------------------- /ci/swift/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Package.resolved -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Support/XCTestCase+AssertDoesntThrow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Support/XCTestCase+AssertDoesntThrow.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Bash/Mocks/BashExecutorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Bash/Mocks/BashExecutorMock.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Bash/Mocks/ProcessExecutorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Bash/Mocks/ProcessExecutorMock.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Cocoapods/ThrowingScannerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Cocoapods/ThrowingScannerTests.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Git/Mocks/GitRevListProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Git/Mocks/GitRevListProviderMock.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Git/Mocks/GitTagsProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Git/Mocks/GitTagsProviderMock.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Git/Mocks/RepoRootProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Git/Mocks/RepoRootProviderMock.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Simctl/SimctlTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Simctl/SimctlTests.swift -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Simctl/list_xc_10_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Simctl/list_xc_10_0_0.json -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Simctl/list_xc_10_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Simctl/list_xc_10_1_0.json -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Simctl/list_xc_10_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Simctl/list_xc_10_2_1.json -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Simctl/list_xc_11_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Simctl/list_xc_11_0_0.json -------------------------------------------------------------------------------- /ci/swift/Sources/AllTests/Tests/Simctl/list_xc_11_4_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/AllTests/Tests/Simctl/list_xc_11_4_1.json -------------------------------------------------------------------------------- /ci/swift/Sources/Bash/BashCommandEscaper/BashEscapedCommandMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Bash/BashCommandEscaper/BashEscapedCommandMaker.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Bash/BashExecutor/BashExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Bash/BashExecutor/BashExecutor.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Bash/BashExecutor/Models/BashEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Bash/BashExecutor/Models/BashEnvironment.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Bash/BashExecutor/Models/BashOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Bash/BashExecutor/Models/BashOutput.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Bash/BashExecutor/Models/BashResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Bash/BashExecutor/Models/BashResult.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Bash/ProcessExecutor/Models/ProcessResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Bash/ProcessExecutor/Models/ProcessResult.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Bash/ProcessExecutor/ProcessExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Bash/ProcessExecutor/ProcessExecutor.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/Build.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/Build.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/BuildDiFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/BuildDiFactory.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/BuildRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/BuildRunner.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/BuildTaskFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/BuildTaskFactory.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/Teamcity/BaseTeamcityBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/Teamcity/BaseTeamcityBuild.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/Teamcity/TeamcityBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/Teamcity/TeamcityBuild.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/Travis/BaseTravisBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/Travis/BaseTravisBuild.swift -------------------------------------------------------------------------------- /ci/swift/Sources/BuildDsl/Build/Travis/TravisBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/BuildDsl/Build/Travis/TravisBuild.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CheckDemoTask/CheckDemoTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CheckDemoTask/CheckDemoTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CheckIpcDemoTask/CheckIpcDemoTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CheckIpcDemoTask/CheckIpcDemoTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiDi/CommonDi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiDi/CommonDi.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiDi/Emcee/EmceeFileUploaderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiDi/Emcee/EmceeFileUploaderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiDi/Emcee/EmceeVersionProviderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiDi/Emcee/EmceeVersionProviderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/Box/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/Box/Box.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/Box/MutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/Box/MutableBox.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/CiLogger/CiLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/CiLogger/CiLogger.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/CiLogger/StdoutCiLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/CiLogger/StdoutCiLogger.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/CompoundError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/CompoundError.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/CopypastedFromMixbox/ErrorString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/CopypastedFromMixbox/ErrorString.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/CopypastedFromMixbox/LazyLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/CopypastedFromMixbox/LazyLoader.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/Environment/EnvironmentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/Environment/EnvironmentProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/Optional+ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/Optional+ToArray.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/Retrier/Retrier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/Retrier/Retrier.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/Retrier/RetrierImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/Retrier/RetrierImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/CiFoundation/URL+ThrowingInit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/CiFoundation/URL+ThrowingInit.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Cache/Clean/CocoapodCacheClean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Cache/Clean/CocoapodCacheClean.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Cache/Clean/CocoapodCacheCleanImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Cache/Clean/CocoapodCacheCleanImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Cache/Clean/CocoapodCacheCleanTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Cache/Clean/CocoapodCacheCleanTarget.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Install/CocoapodsInstall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Install/CocoapodsInstall.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Install/CocoapodsInstallImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Install/CocoapodsInstallImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Repo/Add/CocoapodsRepoAdd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Repo/Add/CocoapodsRepoAdd.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Repo/Add/CocoapodsRepoAddImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Repo/Add/CocoapodsRepoAddImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Repo/Push/CocoapodsRepoPush.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Repo/Push/CocoapodsRepoPush.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Repo/Push/CocoapodsRepoPushImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Repo/Push/CocoapodsRepoPushImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Search/Models/CocoapodsSearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Search/Models/CocoapodsSearchResult.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Trunk/AddOwner/CocoapodsTrunkAddOwner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Trunk/AddOwner/CocoapodsTrunkAddOwner.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Trunk/Push/CocoapodsTrunkPush.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Trunk/Push/CocoapodsTrunkPush.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Cocoapods/Trunk/Push/CocoapodsTrunkPushImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Cocoapods/Trunk/Push/CocoapodsTrunkPushImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Destinations/Models/MixboxTestDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Destinations/Models/MixboxTestDestination.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/Emcee/DelegatingEmcee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/Emcee/DelegatingEmcee.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/Emcee/Emcee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/Emcee/Emcee.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeExecutable/EmceeExecutable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeExecutable/EmceeExecutable.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeExecutable/EmceeExecutableImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeExecutable/EmceeExecutableImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeInstaller/EmceeInstaller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeInstaller/EmceeInstaller.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeInstaller/EmceeInstallerImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeInstaller/EmceeInstallerImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeProvider/CachingEmceeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeProvider/CachingEmceeProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeProvider/EmceeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeProvider/EmceeProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeProvider/InstallingEmceeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeProvider/InstallingEmceeProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/EmceeVersionProvider/EmceeVersionProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/EmceeVersionProvider/EmceeVersionProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/RuntimeDump/RuntimeDump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/RuntimeDump/RuntimeDump.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Emcee/Uploader/EmceeFileUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Emcee/Uploader/EmceeFileUploader.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitCommandExecutor/GitCommandExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitCommandExecutor/GitCommandExecutor.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitCommandExecutor/GitCommandExecutorImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitCommandExecutor/GitCommandExecutorImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitRevListProvider/GitRevListProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitRevListProvider/GitRevListProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitRevListProvider/GitRevListProviderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitRevListProvider/GitRevListProviderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitTagAdder/GitTagAdder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitTagAdder/GitTagAdder.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitTagAdder/GitTagAdderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitTagAdder/GitTagAdderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitTagDeleter/GitTagDeleter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitTagDeleter/GitTagDeleter.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitTagDeleter/GitTagDeleterImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitTagDeleter/GitTagDeleterImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitTagsProvider/GitTagsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitTagsProvider/GitTagsProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitTagsProvider/GitTagsProviderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitTagsProvider/GitTagsProviderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/GitTagsProvider/Models/GitTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/GitTagsProvider/Models/GitTag.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/RepoRootProvider/RepoRootProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/RepoRootProvider/RepoRootProvider.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Git/RepoRootProvider/RepoRootProviderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Git/RepoRootProvider/RepoRootProviderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/ManagePodOwnersTask/ManagePodOwnersTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/ManagePodOwnersTask/ManagePodOwnersTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/ReleaseToCocoapodsTask/ReleaseToCocoapodsTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/ReleaseToCocoapodsTask/ReleaseToCocoapodsTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Releases/Models/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Releases/Models/Version.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Releases/Models/VersionTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Releases/Models/VersionTag.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Releases/PodspecsPatcher/PodspecsPatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Releases/PodspecsPatcher/PodspecsPatcher.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Releases/PodspecsPatcher/PodspecsPatcherImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Releases/PodspecsPatcher/PodspecsPatcherImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/RemoteFiles/FileDownloader/FileDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/RemoteFiles/FileDownloader/FileDownloader.swift -------------------------------------------------------------------------------- /ci/swift/Sources/RemoteFiles/FileUploader/FileUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/RemoteFiles/FileUploader/FileUploader.swift -------------------------------------------------------------------------------- /ci/swift/Sources/RemoteFiles/FileUploader/FileUploaderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/RemoteFiles/FileUploader/FileUploaderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/RunBlackBoxTestsTask/RunBlackBoxTestsTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/RunBlackBoxTestsTask/RunBlackBoxTestsTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/RunGrayBoxTestsTask/RunGrayBoxTestsTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/RunGrayBoxTestsTask/RunGrayBoxTestsTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/RunUnitTestsTask/RunUnitTestsTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/RunUnitTestsTask/RunUnitTestsTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/Boot/SimctlBoot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/Boot/SimctlBoot.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/Boot/SimctlBootImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/Boot/SimctlBootImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/Create/SimctlCreate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/Create/SimctlCreate.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/Create/SimctlCreateImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/Create/SimctlCreateImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/List/SimctlList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/List/SimctlList.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/List/SimctlListImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/List/SimctlListImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/List/SimctlListResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/List/SimctlListResult.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/Shutdown/SimctlShutdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/Shutdown/SimctlShutdown.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Commands/Shutdown/SimctlShutdownImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Commands/Shutdown/SimctlShutdownImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Facade/DelegatingSimctl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Facade/DelegatingSimctl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Facade/Simctl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Facade/Simctl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Models/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Models/Device.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Models/DeviceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Models/DeviceType.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Models/DeviceTypeIdentifier.swift: -------------------------------------------------------------------------------- 1 | public typealias DeviceTypeIdentifier = String 2 | -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Models/Pair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Models/Pair.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Models/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Models/Runtime.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/Models/RuntimeIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/Models/RuntimeIdentifier.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/SimctlExecutor/SimctlExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/SimctlExecutor/SimctlExecutor.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Simctl/SimctlExecutor/SimctlExecutorImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Simctl/SimctlExecutor/SimctlExecutorImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/SingletonHell/Utils/Env.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/SingletonHell/Utils/Env.swift -------------------------------------------------------------------------------- /ci/swift/Sources/StaticChecksTask/Linter/SwiftLint/SwiftLint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/StaticChecksTask/Linter/SwiftLint/SwiftLint.swift -------------------------------------------------------------------------------- /ci/swift/Sources/StaticChecksTask/Linter/SwiftLint/SwiftLintImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/StaticChecksTask/Linter/SwiftLint/SwiftLintImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/StaticChecksTask/StaticChecksTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/StaticChecksTask/StaticChecksTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Tasks/LocalTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Tasks/LocalTask.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Tasks/LocalTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Tasks/LocalTaskExecutor.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityBlackBoxTestsBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityBlackBoxTestsBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityCheckReleaseToCocoapodsBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityCheckReleaseToCocoapodsBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityDi/Impls/DeveloperDirProviderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityDi/Impls/DeveloperDirProviderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityDi/Impls/RemoteCacheConfigProviderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityDi/Impls/RemoteCacheConfigProviderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityDi/Impls/SimulatorSettingsProviderImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityDi/Impls/SimulatorSettingsProviderImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityDi/Impls/TeamcityCiLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityDi/Impls/TeamcityCiLogger.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityDi/Impls/TeamcityLocalTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityDi/Impls/TeamcityLocalTaskExecutor.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityDi/TeamcityBuildDi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityDi/TeamcityBuildDi.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityGrayBoxTestsBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityGrayBoxTestsBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityIpcDemoBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityIpcDemoBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityLogicTestsBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityLogicTestsBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityManagePodOwnersBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityManagePodOwnersBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityReleaseToCocoapodsBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityReleaseToCocoapodsBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityStaticChecksBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityStaticChecksBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TeamcityUiTestsDemoBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TeamcityUiTestsDemoBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TestRunning/TestRunner/EmceeTestRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TestRunning/TestRunner/EmceeTestRunner.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TestRunning/TestRunner/TestRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TestRunning/TestRunner/TestRunner.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TestRunning/TestsTaskRunner/TestsTaskRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TestRunning/TestsTaskRunner/TestsTaskRunner.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TestRunning/TestsTaskRunner/TestsTaskRunnerImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TestRunning/TestsTaskRunner/TestsTaskRunnerImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TravisDi/Impls/TravisLocalTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TravisDi/Impls/TravisLocalTaskExecutor.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TravisDi/TravisBuildDi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TravisDi/TravisBuildDi.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TravisIpcDemoBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TravisIpcDemoBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TravisLogicTestsBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TravisLogicTestsBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/TravisOversimplifiedDemoBuild/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/TravisOversimplifiedDemoBuild/main.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Xcodebuild/IosProjectBuilder/IosProjectBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Xcodebuild/IosProjectBuilder/IosProjectBuilder.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Xcodebuild/Xcodebuild/Xcodebuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Xcodebuild/Xcodebuild/Xcodebuild.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildAction.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildExitCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildExitCode.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildImpl.swift -------------------------------------------------------------------------------- /ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/Sources/Xcodebuild/Xcodebuild/XcodebuildResult.swift -------------------------------------------------------------------------------- /ci/swift/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/make.sh -------------------------------------------------------------------------------- /ci/swift/run_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/swift/run_swift -------------------------------------------------------------------------------- /ci/tools/yacc/check_yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/tools/yacc/check_yacc -------------------------------------------------------------------------------- /ci/travis/make_travis_yml/make_travis_yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/travis/make_travis_yml/make_travis_yml -------------------------------------------------------------------------------- /ci/travis/make_travis_yml/travis_yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/ci/travis/make_travis_yml/travis_yml -------------------------------------------------------------------------------- /cocoapods/enable_testing_with_mixbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/enable_testing_with_mixbox.rb -------------------------------------------------------------------------------- /cocoapods/lock_patcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/lock_patcher.rb -------------------------------------------------------------------------------- /cocoapods/mixbox_podspecs_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/mixbox_podspecs_source.rb -------------------------------------------------------------------------------- /cocoapods/mixbox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/mixbox_spec.rb -------------------------------------------------------------------------------- /cocoapods/patch_deployment_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/patch_deployment_target.rb -------------------------------------------------------------------------------- /cocoapods/patch_xcconfigs_toolchain_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/patch_xcconfigs_toolchain_dir.rb -------------------------------------------------------------------------------- /cocoapods/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/repo.rb -------------------------------------------------------------------------------- /cocoapods/repo_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/repo_settings.rb -------------------------------------------------------------------------------- /cocoapods/repo_with_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/repo_with_settings.rb -------------------------------------------------------------------------------- /cocoapods/software_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/cocoapods/software_versions.rb -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avito-tech/Mixbox/HEAD/make.sh --------------------------------------------------------------------------------