We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 325fd0c + 7198617 commit 1fe2107Copy full SHA for 1fe2107
18 files changed
EasyImagy.xcodeproj/project.pbxproj
@@ -215,7 +215,6 @@
215
D6134A3F1F852A57005592A2 /* ImageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTests.swift; sourceTree = "<group>"; };
216
D6134A401F852A57005592A2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
217
D6134A411F852A57005592A2 /* RGBATests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RGBATests.swift; sourceTree = "<group>"; };
218
- D6134A471F852A57005592A2 /* LinuxMain.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LinuxMain.swift; sourceTree = "<group>"; };
219
D6134A601F852C80005592A2 /* EasyImagy.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = EasyImagy.framework; sourceTree = BUILT_PRODUCTS_DIR; };
220
D6134A681F852C80005592A2 /* EasyImagyTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EasyImagyTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
221
D6134AA21F85D1F9005592A2 /* EasyImagy.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = EasyImagy.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -376,7 +375,6 @@
376
375
isa = PBXGroup;
377
children = (
378
D6134A3A1F852A57005592A2 /* EasyImagyTests */,
379
- D6134A471F852A57005592A2 /* LinuxMain.swift */,
380
);
381
path = Tests;
382
sourceTree = "<group>";
Tests/EasyImagyTests/AnyImageTests.swift
@@ -111,14 +111,4 @@ class AnyImageTests : XCTestCase {
111
XCTAssertEqual(a[0, 0], 9)
112
XCTAssertEqual(b[0, 0], 1)
113
}
114
-
115
- static var allTests = [
116
- ("testSlice", testSlice),
117
- ("testXRange", testXRange),
118
- ("testYRange", testYRange),
119
- ("testSubscript", testSubscript),
120
- ("testSubscriptRange", testSubscriptRange),
121
- ("testSequence", testSequence),
122
- ("testCopyOnWrite", testCopyOnWrite),
123
- ]
124
Tests/EasyImagyTests/ConvolutionTests.swift
@@ -150,8 +150,4 @@ class ConvolutionTests: XCTestCase {
150
]))
151
152
153
154
155
- ("testConvoluted", testConvoluted),
156
157
Tests/EasyImagyTests/EasyImagyTests.swift
@@ -217,14 +217,6 @@ class EasyImagySample: XCTestCase {
/**/ }
#endif
222
- ("testInitialization", testInitialization),
223
- ("testAccessToAPixel", testAccessToAPixel),
224
- ("testRotation", testRotation),
225
- ("testResizing", testResizing),
226
- ("testCropping", testCropping),
227
228
229
230
private func never() -> Bool {
Tests/EasyImagyTests/ExtrapolationTests.swift
@@ -532,9 +532,4 @@ class ExtrapolationTests: XCTestCase {
532
XCTAssertEqual(c[-3, -3], 1)
533
534
535
536
537
- ("testSubscriptWithExtrapolation", testSubscriptWithExtrapolation),
538
- ("testSubscriptRangeWithExtrapolation", testSubscriptRangeWithExtrapolation),
539
540
Tests/EasyImagyTests/HigherOrderFunctionsTests.swift
@@ -107,10 +107,4 @@ class HigherOrderFunctionsTests : XCTestCase {
107
image.update { $0 += 1 }
108
109
110
- ("testMap", testMap),
- ("testUpdate", testUpdate),
- ("testUpdatePerformance", testUpdatePerformance),
Tests/EasyImagyTests/ImageOperatorsTests.swift
@@ -281,16 +281,5 @@ class ImageOperatorsTests: XCTestCase {
281
true, true,
282
283
284
285
286
- ("testAdd", testAdd),
287
- ("testAnd", testAnd),
288
- ("testAddAsign", testAddAsign),
289
- ("testSubtractAsign", testSubtractAsign),
290
- ("testIsEqual", testIsEqual),
291
- ("testIsNotEqual", testIsNotEqual),
292
- ("testNegate", testNegate),
293
- ("testNot", testNot),
294
295
296
Tests/EasyImagyTests/ImageProtocolTests.swift
@@ -159,13 +159,4 @@ class ImageProtocolTests : XCTestCase {
159
160
161
162
163
164
165
- ("testInitWithPixelAt", testInitWithPixelAt),
166
- ("testTransposed", testTransposed),
167
- ("testXReversed", testXReversed),
168
- ("testYReversed", testYReversed),
169
- ("testRotated", testRotated),
170
171
Tests/EasyImagyTests/ImageSliceTests.swift
@@ -145,11 +145,4 @@ class ImageSliceTests: XCTestCase {
145
XCTAssertNil(image.pixelAt(x: 0, y: -1))
146
XCTAssertNil(image.pixelAt(x: 0, y: 3))
147
148
149
- ("testInit", testInit),
- ("testPixel", testPixel),
Tests/EasyImagyTests/ImageTests.swift
@@ -332,20 +332,4 @@ class ImageTests: XCTestCase {
332
333
334
335
336
337
- ("testInitWithImageSlice", testInitWithImageSlice),
338
339
- ("testSubscriptGet", testSubscriptGet),
340
- ("testSubscriptSet", testSubscriptSet),
341
342
343
- ("testWithUnsafeBufferPointer", testWithUnsafeBufferPointer),
344
- ("testWithUnsafeMutableBufferPointer", testWithUnsafeMutableBufferPointer),
345
- ("testWithUnsafeBytes", testWithUnsafeBytes),
346
- ("testWithUnsafeMutableBytes", testWithUnsafeMutableBytes),
347
- ("testCopyOnWritePerformanceOfCopy", testCopyOnWritePerformanceOfCopy),
348
- ("testCopyOnWritePerformanceOfUpdate", testCopyOnWritePerformanceOfUpdate),
349
- ("testCopyPerformance", testCopyPerformance),
350
351
0 commit comments