-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy path_TestCase.swift
More file actions
47 lines (40 loc) · 852 Bytes
/
_TestCase.swift
File metadata and controls
47 lines (40 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// _TestCase.swift
// SwiftTask
//
// Created by Yasuhiro Inami on 2014/08/21.
// Copyright (c) 2014年 Yasuhiro Inami. All rights reserved.
//
import SwiftTask
import Async
import XCTest
typealias ErrorString = String
class _TestCase: XCTestCase
{
override func setUp()
{
super.setUp()
print("\n\n\n")
}
override func tearDown()
{
print("\n\n\n")
super.tearDown()
}
func wait(_ timeout: TimeInterval = 3)
{
self.waitForExpectations(timeout: timeout) { error in
print("wait error = \(error)")
}
}
var isAsync: Bool { return false }
func perform(closure: @escaping () -> Void)
{
if self.isAsync {
Async.main(after: 0.01, closure)
}
else {
closure()
}
}
}