Xcode Playground로 Unit Test 실행
1586 단어 iOSunittestSwiftXcodeplayground
개요
iOS 개발에서 Unit Test를 작성할 때 이것을 쓸 수 있습니까? 그리고 시도하고 싶을 때가 있습니다.
그 때는 아래와 같이 쓰면 저장→실행을 즉시 실시할 수 있습니다.
import UIKit
import XCTest
class ViewController {
}
class ViewControllerTests: XCTestCase {
func testInitialize() {
let vc = ViewController()
XCTAssertNotNil(vc)
}
}
ViewControllerTests.defaultTestSuite.run()
XCTest
를 import하고 테스트를 실행하고 싶은 타이밍에 ViewControllerTests.defaultTestSuite.run()
Xcode Playground의 Console에 테스트 실행 결과가 표시됩니다.
실행 환경
import UIKit
import XCTest
class ViewController {
}
class ViewControllerTests: XCTestCase {
func testInitialize() {
let vc = ViewController()
XCTAssertNotNil(vc)
}
}
ViewControllerTests.defaultTestSuite.run()
Reference
이 문제에 관하여(Xcode Playground로 Unit Test 실행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/himara2/items/c763dcd3903e75901d7c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)