Skip to content

Commit

Permalink
Added LinuxMain.swift so numerics can be used on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
tachoknight committed Nov 8, 2019
1 parent 4a23df7 commit 86e9087
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import XCTest

@testable import ComplexTests
@testable import RealTests

XCTMain([
testCase(ArithmeticBenchmarkTests.testDivisionByConstant),
testCase(ArithmeticBenchmarkTests.testReciprocal),
testCase(ArithmeticBenchmarkTests.testDivisionByConstantC),
testCase(ArithmeticBenchmarkTests.testMultiplication),
testCase(ArithmeticBenchmarkTests.testMultiplicationC),
testCase(ArithmeticBenchmarkTests.testDivision),
testCase(ArithmeticBenchmarkTests.testDivisionC),
testCase(ArithmeticBenchmarkTests.testDivisionPoorScaling),
testCase(ArithmeticBenchmarkTests.testDivisionPoorScalingC),
testCase(ArithmeticBenchmarkTests.testMultiplicationPoorScaling),
testCase(ArithmeticBenchmarkTests.testMultiplicationPoorScalingC),
testCase(PropertyTests.testProperties),
testCase(PropertyTests.testEquatableHashable),
testCase(ArithmeticTests.testPolar),
testCase(ArithmeticTests.testBaudinSmith),
testCase(RealTests.testFloat),
testCase(RealTests.testDouble),
testCase(RealTests.testFloat80)
])

0 comments on commit 86e9087

Please sign in to comment.