-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDFSwiftTests.swift
114 lines (89 loc) · 2.73 KB
/
DFSwiftTests.swift
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
//
// DFSwiftTests.swift
// DFSwiftTests
//
// Created by Sinha, Gyanendra on 2/5/15.
// Copyright (c) 2015 Sinha, Gyanendra. All rights reserved.
//
import UIKit
import XCTest
import DFSwift
protocol Test {
typealias T
var x:Any {get set}
}
class DFSwiftTests: 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 testTaskCreation() {
var task0 = task({() -> Int in
return 1
})
XCTAssert(task0.ports.count == 0, "Port count must be 0")
var task1 = task({(a:Int) -> Int in
return a
})
XCTAssert(task1.ports.count == 1, "Port count must be 1")
var task2 = task({(a:Int, b:Int) -> Int in
return a
})
XCTAssert(task2.ports.count == 2, "Port count must be 2")
var task3 = task({(a: Int, b:Int, c:Int) -> Int in
return a
})
XCTAssert(task3.ports.count == 3, "Port count must be 3")
var task4 = task({(a: Int, b:Int, c:Int, d:Int) -> Int in
return a
})
XCTAssert(task4.ports.count == 4, "Port count must be 4")
}
func testTaskBinding() {
var task0 = task({() -> Int in
return 1
})
var task1 = task({(a:Int) -> Int in
return a
})
var task2 = task({(a:String, b:Int) -> Int in
return b
})
var task3 = task({(a: Int, b:Int, c:Int) -> Int in
return a
})
var task4 = task({(a: Int, b:Int, c:Int, d:Int) -> Int in
return a
})
task1~>task2.IN2
task2~>task3.IN2
task3~>task4.IN4
}
func testComputation() {
var task2 = task({(a:Int, b:Int) -> Int in
return a + b
})
task2[PORT1] = 1
task2[PORT2] = 3
let result = task2.compute()!
XCTAssert(result == 4, "Result must be 4")
}
func testObserver() {
var x:Observable<Int> = Observable(2)
x.addObserver(ObservingType.DidSet, closure: {(a:Int, b:Int) in
println(a)
println(b)
})
x.raw = 3
}
func testPerformanceExample() {
// This is an example of a performance test case.
self.measureBlock() {
// Put the code you want to measure the time of here.
}
}
}