-
Notifications
You must be signed in to change notification settings - Fork 215
/
Hard_097_Interleaving_String_Test.swift
84 lines (82 loc) · 3.19 KB
/
Hard_097_Interleaving_String_Test.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
//
// Hard_097_Interleaving_String_Test.swift
// Solutions
//
// Created by Di Wu on 12/8/15.
// Copyright © 2015 diwu. All rights reserved.
//
import XCTest
class Hard_097_Interleaving_String_Test: XCTestCase, SolutionsTestCase {
func test_001() {
let input: [String] = ["aabcc", "dbbca", "aadbbcbcac"]
let expected: Bool = true
asyncHelper(input: input, expected: expected)
}
func test_002() {
let input: [String] = ["aabcc", "dbbca", "aadbbbaccc"]
let expected: Bool = false
asyncHelper(input: input, expected: expected)
}
func test_003() {
let input: [String] = ["abc", "1", "1abc"]
let expected: Bool = true
asyncHelper(input: input, expected: expected)
}
func test_004() {
let input: [String] = ["1", "abc", "a1bc"]
let expected: Bool = true
asyncHelper(input: input, expected: expected)
}
func test_005() {
let input: [String] = ["1", "abc", "b1ac"]
let expected: Bool = false
asyncHelper(input: input, expected: expected)
}
func test_006() {
let input: [String] = ["abc", "12", "1abc2"]
let expected: Bool = true
asyncHelper(input: input, expected: expected)
}
func test_007() {
let input: [String] = ["12", "abc", "a12bc"]
let expected: Bool = true
asyncHelper(input: input, expected: expected)
}
func test_008() {
let input: [String] = ["12", "abc", "b1a2c"]
let expected: Bool = false
asyncHelper(input: input, expected: expected)
}
func test_009() {
let input: [String] = ["abc", "123456", "12a3b4c56"]
let expected: Bool = true
asyncHelper(input: input, expected: expected)
}
func test_010() {
let input: [String] = ["123456", "abc", "a12b3456c"]
let expected: Bool = true
asyncHelper(input: input, expected: expected)
}
func test_011() {
let input: [String] = ["123456", "abc", "b1a2345c6"]
let expected: Bool = false
asyncHelper(input: input, expected: expected)
}
private func asyncHelper(input: [String], expected: Bool) {
weak var expectation: XCTestExpectation? = self.expectation(description:timeOutName())
serialQueue().async(execute: { () -> Void in
let result_swift = Hard_097_Interleaving_String.isInterleave(s1: input[0], s2: input[1], s3: input[2])
let result_objc = ObjC_Hard_097_Interleaving_String.isInterleave(withS1: input[0], s2: input[1], s3: input[2])
assertHelper(result_swift == expected, problemName:self.problemName(), input: input, resultValue: result_swift, expectedValue: expected)
assertHelper(result_objc == expected, problemName:self.problemName(), input: input, resultValue: result_objc, expectedValue: expected)
if let unwrapped = expectation {
unwrapped.fulfill()
}
})
waitForExpectations(timeout:timeOut()) { (error: Error?) -> Void in
if error != nil {
assertHelper(false, problemName:self.problemName(), input: input, resultValue:self.timeOutName(), expectedValue: expected)
}
}
}
}