Skip to content

Commit

Permalink
Add missing fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Dec 7, 2019
1 parent 7983cf1 commit 7e9fc9c
Show file tree
Hide file tree
Showing 12 changed files with 186 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Tests/Fixtures/Frameworks/iOS/Info.plist
Original file line number Diff line number Diff line change
@@ -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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Tests/Fixtures/Frameworks/iOS/iOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// iOS.h
// iOS
//
// Created by Pedro Shopify on 07.12.19.
// Copyright © 2019 Tuist. All rights reserved.
//

#import <Foundation/Foundation.h>

//! Project version number for iOS.
FOUNDATION_EXPORT double iOSVersionNumber;

//! Project version string for iOS.
FOUNDATION_EXPORT const unsigned char iOSVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <iOS/PublicHeader.h>


5 changes: 5 additions & 0 deletions Tests/Fixtures/Frameworks/iOS/iOS.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import Foundation

public final class iOS {
public init() {}
}
24 changes: 24 additions & 0 deletions Tests/Fixtures/Frameworks/macOS/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2019 Tuist. All rights reserved.</string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Tests/Fixtures/Frameworks/macOS/macOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// macOS.h
// macOS
//
// Created by Pedro Shopify on 07.12.19.
// Copyright © 2019 Tuist. All rights reserved.
//

#import <Foundation/Foundation.h>

//! Project version number for macOS.
FOUNDATION_EXPORT double macOSVersionNumber;

//! Project version string for macOS.
FOUNDATION_EXPORT const unsigned char macOSVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <macOS/PublicHeader.h>


5 changes: 5 additions & 0 deletions Tests/Fixtures/Frameworks/macOS/macOS.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import Foundation

public final class watchOS {
public init() {}
}
22 changes: 22 additions & 0 deletions Tests/Fixtures/Frameworks/tvOS/Info.plist
Original file line number Diff line number Diff line change
@@ -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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Tests/Fixtures/Frameworks/tvOS/tvOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// tvOS.h
// tvOS
//
// Created by Pedro Shopify on 07.12.19.
// Copyright © 2019 Tuist. All rights reserved.
//

#import <Foundation/Foundation.h>

//! Project version number for tvOS.
FOUNDATION_EXPORT double tvOSVersionNumber;

//! Project version string for tvOS.
FOUNDATION_EXPORT const unsigned char tvOSVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <tvOS/PublicHeader.h>


5 changes: 5 additions & 0 deletions Tests/Fixtures/Frameworks/tvOS/tvOS.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import Foundation

public final class tvOS {
public init() {}
}
22 changes: 22 additions & 0 deletions Tests/Fixtures/Frameworks/watchOS/Info.plist
Original file line number Diff line number Diff line change
@@ -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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Tests/Fixtures/Frameworks/watchOS/watchOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// watchOS.h
// watchOS
//
// Created by Pedro Shopify on 07.12.19.
// Copyright © 2019 Tuist. All rights reserved.
//

#import <Foundation/Foundation.h>

//! Project version number for watchOS.
FOUNDATION_EXPORT double watchOSVersionNumber;

//! Project version string for watchOS.
FOUNDATION_EXPORT const unsigned char watchOSVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <watchOS/PublicHeader.h>


5 changes: 5 additions & 0 deletions Tests/Fixtures/Frameworks/watchOS/watchOS.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import Foundation

public final class watchOS {
public init() {}
}

0 comments on commit 7e9fc9c

Please sign in to comment.