// // XcodePerforcePluginTest2.swift // XcodePerforcePlugin // // Created by Jaime Rios on 2015-12-10. // Copyright © 2015 Nikon Inc. All rights reserved. // import XCTest class XcodePerforcePluginTest2: 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 testP4Add() { let bundle = NSBundle.mainBundle() let pluginCode = XcodePerforcePlugin(bundle: bundle) pluginCode.p4Add() } func testPerformanceExample() { // This is an example of a performance test case. self.measureBlock { // Put the code you want to measure the time of here. } } }