(bundleId, urlScheme)
| 106 | } |
| 107 | |
| 108 | function fixtureInfoPlist(bundleId, urlScheme) { |
| 109 | return `<?xml version="1.0" encoding="UTF-8"?> |
| 110 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
| 111 | <plist version="1.0"> |
| 112 | <dict> |
| 113 | <key>CFBundleDevelopmentRegion</key><string>en</string> |
| 114 | <key>CFBundleExecutable</key><string>${executable}</string> |
| 115 | <key>CFBundleIdentifier</key><string>${bundleId}</string> |
| 116 | <key>CFBundleInfoDictionaryVersion</key><string>6.0</string> |
| 117 | <key>CFBundleName</key><string>${executable}</string> |
| 118 | <key>CFBundlePackageType</key><string>APPL</string> |
| 119 | <key>CFBundleShortVersionString</key><string>1.0</string> |
| 120 | <key>CFBundleVersion</key><string>1</string> |
| 121 | <key>LSRequiresIPhoneOS</key><true/> |
| 122 | <key>MinimumOSVersion</key><string>${minimumIosVersion}</string> |
| 123 | <key>UIDeviceFamily</key><array><integer>1</integer></array> |
| 124 | <key>CFBundleURLTypes</key> |
| 125 | <array> |
| 126 | <dict> |
| 127 | <key>CFBundleURLName</key><string>${executable}</string> |
| 128 | <key>CFBundleURLSchemes</key> |
| 129 | <array><string>${urlScheme}</string></array> |
| 130 | </dict> |
| 131 | </array> |
| 132 | </dict> |
| 133 | </plist> |
| 134 | `; |
| 135 | } |
| 136 | |
| 137 | function fixtureSource() { |
| 138 | return `#import <QuartzCore/QuartzCore.h> |
no outgoing calls
no test coverage detected