|
| 1 | +import XCTest |
| 2 | + |
| 3 | +@testable import ComplexTests |
| 4 | +@testable import RealTests |
| 5 | + |
| 6 | +XCTMain([ |
| 7 | + testCase(ArithmeticBenchmarkTests.testDivisionByConstant), |
| 8 | + testCase(ArithmeticBenchmarkTests.testReciprocal), |
| 9 | + testCase(ArithmeticBenchmarkTests.testDivisionByConstantC), |
| 10 | + testCase(ArithmeticBenchmarkTests.testMultiplication), |
| 11 | + testCase(ArithmeticBenchmarkTests.testMultiplicationC), |
| 12 | + testCase(ArithmeticBenchmarkTests.testDivision), |
| 13 | + testCase(ArithmeticBenchmarkTests.testDivisionC), |
| 14 | + testCase(ArithmeticBenchmarkTests.testDivisionPoorScaling), |
| 15 | + testCase(ArithmeticBenchmarkTests.testDivisionPoorScalingC), |
| 16 | + testCase(ArithmeticBenchmarkTests.testMultiplicationPoorScaling), |
| 17 | + testCase(ArithmeticBenchmarkTests.testMultiplicationPoorScalingC), |
| 18 | + testCase(PropertyTests.testProperties), |
| 19 | + testCase(PropertyTests.testEquatableHashable), |
| 20 | + testCase(ArithmeticTests.testPolar), |
| 21 | + testCase(ArithmeticTests.testBaudinSmith), |
| 22 | + testCase(RealTests.testFloat), |
| 23 | + testCase(RealTests.testDouble), |
| 24 | + testCase(RealTests.testFloat80) |
| 25 | +]) |
0 commit comments