I came here with almost the same problem: how to perform the setUp
just once and in Swift. Here is the solution:
override class func setUp() {
super.setUp()
// ...
}
override class func tearDown() {
// ...
super.tearDown()
}
Right now I'm still looking for a solution for an asynchronous setUp
!