Slide 16
Slide 16 text
Lunchͷ͍ํ(ςετଆ)
import XCTest
import LunchTest
final class RootViewControllerTest: XCTestCase, ViewControllerTestable {
var viewControllerName: String { return ViewControllerName.rootViewController.rawValue }
func launch(with locale: String) -> XCUIApplication {
let launcher = Launcher(targetViewController: self, locale: locale)
return launcher.launch()
}
func testInitializeJP() {
let _ = launch(with: "ja_JP")
// TODO: something todo
}
}
!16