|
| 1 | +#if !canImport(ObjectiveC) |
| 2 | +import XCTest |
| 3 | + |
| 4 | +extension AngleTests { |
| 5 | + // DO NOT MODIFY: This is autogenerated, use: |
| 6 | + // `swift test --generate-linuxmain` |
| 7 | + // to regenerate. |
| 8 | + static let __allTests__AngleTests = [ |
| 9 | + ("testAngleAddition", testAngleAddition), |
| 10 | + ("testAngleCompoundAdditionAndAssignment", testAngleCompoundAdditionAndAssignment), |
| 11 | + ("testAngleCompoundSubtractionAndAssignment", testAngleCompoundSubtractionAndAssignment), |
| 12 | + ("testAngleDivide", testAngleDivide), |
| 13 | + ("testAngleMultiply", testAngleMultiply), |
| 14 | + ("testAngleSubtraction", testAngleSubtraction), |
| 15 | + ("testMakeAngleFromIntegerInDegrees", testMakeAngleFromIntegerInDegrees), |
| 16 | + ("testPostfixConstructsAngleFromFloatInDegrees", testPostfixConstructsAngleFromFloatInDegrees), |
| 17 | + ("testPostfixConstructsAngleFromIntInDegrees", testPostfixConstructsAngleFromIntInDegrees), |
| 18 | + ] |
| 19 | +} |
| 20 | + |
| 21 | +extension ClampTests { |
| 22 | + // DO NOT MODIFY: This is autogenerated, use: |
| 23 | + // `swift test --generate-linuxmain` |
| 24 | + // to regenerate. |
| 25 | + static let __allTests__ClampTests = [ |
| 26 | + ("testClampReturnsMaximumValueWhenGreaterThanMaximum", testClampReturnsMaximumValueWhenGreaterThanMaximum), |
| 27 | + ("testClampReturnsMinimumValueWhenLessThanMinimum", testClampReturnsMinimumValueWhenLessThanMinimum), |
| 28 | + ("testClampReturnsSameValueWhenWithinRange", testClampReturnsSameValueWhenWithinRange), |
| 29 | + ] |
| 30 | +} |
| 31 | + |
| 32 | +extension Matrix4x4Tests { |
| 33 | + // DO NOT MODIFY: This is autogenerated, use: |
| 34 | + // `swift test --generate-linuxmain` |
| 35 | + // to regenerate. |
| 36 | + static let __allTests__Matrix4x4Tests = [ |
| 37 | + ("testIdentity", testIdentity), |
| 38 | + ("testInitWithFloats", testInitWithFloats), |
| 39 | + ("testInitWithFloatsIsRowMajor", testInitWithFloatsIsRowMajor), |
| 40 | + ("testInitWithVector4IsColumnMajor", testInitWithVector4IsColumnMajor), |
| 41 | + ("testInitWithVectors", testInitWithVectors), |
| 42 | + ] |
| 43 | +} |
| 44 | + |
| 45 | +extension RectTests { |
| 46 | + // DO NOT MODIFY: This is autogenerated, use: |
| 47 | + // `swift test --generate-linuxmain` |
| 48 | + // to regenerate. |
| 49 | + static let __allTests__RectTests = [ |
| 50 | + ("testRectEquatable", testRectEquatable), |
| 51 | + ] |
| 52 | +} |
| 53 | + |
| 54 | +extension Vector2fTests { |
| 55 | + // DO NOT MODIFY: This is autogenerated, use: |
| 56 | + // `swift test --generate-linuxmain` |
| 57 | + // to regenerate. |
| 58 | + static let __allTests__Vector2fTests = [ |
| 59 | + ("testVectorMultiplyWithMatrix4x4", testVectorMultiplyWithMatrix4x4), |
| 60 | + ("testVectorMultiplyWithMatrix4x4_2", testVectorMultiplyWithMatrix4x4_2), |
| 61 | + ("testVectorsAreEqualUsingEquatable", testVectorsAreEqualUsingEquatable), |
| 62 | + ("testVectorsAreNotEqualUsingEquatable", testVectorsAreNotEqualUsingEquatable), |
| 63 | + ] |
| 64 | +} |
| 65 | + |
| 66 | +public func __allTests() -> [XCTestCaseEntry] { |
| 67 | + return [ |
| 68 | + testCase(AngleTests.__allTests__AngleTests), |
| 69 | + testCase(ClampTests.__allTests__ClampTests), |
| 70 | + testCase(Matrix4x4Tests.__allTests__Matrix4x4Tests), |
| 71 | + testCase(RectTests.__allTests__RectTests), |
| 72 | + testCase(Vector2fTests.__allTests__Vector2fTests), |
| 73 | + ] |
| 74 | +} |
| 75 | +#endif |
0 commit comments