XcodePerforcePluginTest2.swift #1

  • //
  • guest/
  • jaime_rios/
  • XcodePerforcePlugin/
  • XcodePerforcePluginUT/
  • XcodePerforcePluginTest2.swift
  • View
  • Commits
  • Open Download .zip Download (948 B)
//
//  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.
        }
    }

}
# Change User Description Committed
#1 16654 Jaime Rios Added unit test file to exercise Swift code; turned on code coverage for maybe obvious reasons; grouped docs into Docs group within Xcode project; rearranged files within project.