diff options
| author | Tomáš Znamenáček | 2014-08-05 15:10:00 +0200 |
|---|---|---|
| committer | Tomáš Znamenáček | 2015-01-07 15:05:11 +0100 |
| commit | 42daeb6f1298c800b3d42a6b746e2e6ef6b0670e (patch) | |
| tree | 155d7f4a04b740ec3f61df5e47ba4e1604158d72 /Tests | |
| parent | 0eb5c2e87388cb4a6aae9b7e4e92a270eb419b4d (diff) | |
| download | MASShortcut-42daeb6f1298c800b3d42a6b746e2e6ef6b0670e.tar.bz2 | |
Added a unit testing target.
Diffstat (limited to 'Tests')
| -rw-r--r-- | Tests/Info.plist | 22 | ||||
| -rw-r--r-- | Tests/Prefix.pch | 4 |
2 files changed, 26 insertions, 0 deletions
diff --git a/Tests/Info.plist b/Tests/Info.plist new file mode 100644 index 0000000..0f3f601 --- /dev/null +++ b/Tests/Info.plist @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string>${EXECUTABLE_NAME}</string> + <key>CFBundleIdentifier</key> + <string>com.github.shpakovski.MASShortcut.${PRODUCT_NAME:rfc1034identifier}</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>BNDL</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>1</string> +</dict> +</plist> diff --git a/Tests/Prefix.pch b/Tests/Prefix.pch new file mode 100644 index 0000000..ce88bd0 --- /dev/null +++ b/Tests/Prefix.pch @@ -0,0 +1,4 @@ +#ifdef __OBJC__ + #import <Cocoa/Cocoa.h> + #import <XCTest/XCTest.h> +#endif |
