Client via Swift | V1.1

This commit is contained in:
2015-09-09 15:23:17 +02:00
parent 03abd6ef7a
commit 0752fe0547
64 changed files with 2625 additions and 1048 deletions
@@ -5,11 +5,13 @@
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.adawim.${PRODUCT_NAME:rfc1034identifier}</string>
<string>com.ipbc.client.osx.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
@@ -1,2 +0,0 @@
/* Localized versions of Info.plist keys */
@@ -1,34 +0,0 @@
//
// ipbc_ClientTests.m
// ipbc-ClientTests
//
// Created by Gerrit Linnemann on 25.10.13.
// Copyright (c) 2013 Adawim UG (haftungsbeschränkt). All rights reserved.
//
#import <XCTest/XCTest.h>
@interface ipbc_ClientTests : XCTestCase
@end
@implementation ipbc_ClientTests
- (void)setUp
{
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}
- (void)tearDown
{
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
- (void)testExample
{
XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
}
@end
@@ -0,0 +1,36 @@
//
// ipbc_ClientTests.swift
// ipbc-ClientTests
//
// Created by Gerrit Linnemann on 09.09.15.
// Copyright (c) 2015 Adawim UG (haftungsbeschränkt). All rights reserved.
//
import Cocoa
import XCTest
class ipbc_ClientTests: XCTestCase {
override func setUp() {
super.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.
super.tearDown()
}
func testExample() {
// This is an example of a functional test case.
XCTAssert(true, "Pass")
}
func testPerformanceExample() {
// This is an example of a performance test case.
self.measureBlock() {
// Put the code you want to measure the time of here.
}
}
}