Skip to content

Commit

Permalink
Init proj
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniket committed Mar 13, 2019
1 parent 50041e1 commit 8b05817
Show file tree
Hide file tree
Showing 8 changed files with 597 additions and 0 deletions.
470 changes: 470 additions & 0 deletions PodSdkTest.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
22 changes: 22 additions & 0 deletions PodSdkTest/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>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions PodSdkTest/PodSdkTest.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// PodSdkTest.h
// PodSdkTest
//
// Created by aniket ayachit on 13/03/19.
// Copyright © 2019 aniket ayachit. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for PodSdkTest.
FOUNDATION_EXPORT double PodSdkTestVersionNumber;

//! Project version string for PodSdkTest.
FOUNDATION_EXPORT const unsigned char PodSdkTestVersionString[];

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


15 changes: 15 additions & 0 deletions PodSdkTest/PodTestSwift.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// PodTestSwift.swift
// PodSdkTest
//
// Created by aniket ayachit on 13/03/19.
// Copyright © 2019 aniket ayachit. All rights reserved.
//

import Foundation

public class PodTestSwift {
public class func podTestFunc() -> String {
return "Returning from podTestFunc"
}
}
22 changes: 22 additions & 0 deletions PodSdkTestTests/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>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
34 changes: 34 additions & 0 deletions PodSdkTestTests/PodSdkTestTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
//
// PodSdkTestTests.swift
// PodSdkTestTests
//
// Created by aniket ayachit on 13/03/19.
// Copyright © 2019 aniket ayachit. All rights reserved.
//

import XCTest
@testable import PodSdkTest

class PodSdkTestTests: XCTestCase {

override func setUp() {
// Put setup code here. This method is called before the invocation of each test method in the class.
}

override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}

func testPerformanceExample() {
// This is an example of a performance test case.
self.measure {
// Put the code you want to measure the time of here.
}
}

}

0 comments on commit 8b05817

Please sign in to comment.