53 lines
2.4 KiB
Swift
53 lines
2.4 KiB
Swift
#if !canImport(ObjectiveC)
|
|
import XCTest
|
|
|
|
extension ComponentTests {
|
|
// DO NOT MODIFY: This is autogenerated, use:
|
|
// `swift test --generate-linuxmain`
|
|
// to regenerate.
|
|
static let __allTests__ComponentTests = [
|
|
("testMeasureComponentIdentifier", testMeasureComponentIdentifier),
|
|
("testMeasureStaticComponentIdentifier", testMeasureStaticComponentIdentifier),
|
|
]
|
|
}
|
|
|
|
extension HashingPerformanceTests {
|
|
// DO NOT MODIFY: This is autogenerated, use:
|
|
// `swift test --generate-linuxmain`
|
|
// to regenerate.
|
|
static let __allTests__HashingPerformanceTests = [
|
|
("testMeasureCombineHash", testMeasureCombineHash),
|
|
("testMeasureSetOfSetHash", testMeasureSetOfSetHash),
|
|
]
|
|
}
|
|
|
|
extension TypedFamilyPerformanceTests {
|
|
// DO NOT MODIFY: This is autogenerated, use:
|
|
// `swift test --generate-linuxmain`
|
|
// to regenerate.
|
|
static let __allTests__TypedFamilyPerformanceTests = [
|
|
("testMeasureTraitMatching", testMeasureTraitMatching),
|
|
("testPerformanceArray", testPerformanceArray),
|
|
("testPerformanceTypedFamilyEntities", testPerformanceTypedFamilyEntities),
|
|
("testPerformanceTypedFamilyEntityFiveComponents", testPerformanceTypedFamilyEntityFiveComponents),
|
|
("testPerformanceTypedFamilyEntityFourComponents", testPerformanceTypedFamilyEntityFourComponents),
|
|
("testPerformanceTypedFamilyEntityOneComponent", testPerformanceTypedFamilyEntityOneComponent),
|
|
("testPerformanceTypedFamilyEntityThreeComponents", testPerformanceTypedFamilyEntityThreeComponents),
|
|
("testPerformanceTypedFamilyEntityTwoComponents", testPerformanceTypedFamilyEntityTwoComponents),
|
|
("testPerformanceTypedFamilyFiveComponents", testPerformanceTypedFamilyFiveComponents),
|
|
("testPerformanceTypedFamilyFourComponents", testPerformanceTypedFamilyFourComponents),
|
|
("testPerformanceTypedFamilyOneComponent", testPerformanceTypedFamilyOneComponent),
|
|
("testPerformanceTypedFamilyThreeComponents", testPerformanceTypedFamilyThreeComponents),
|
|
("testPerformanceTypedFamilyTwoComponents", testPerformanceTypedFamilyTwoComponents),
|
|
]
|
|
}
|
|
|
|
public func __allTests() -> [XCTestCaseEntry] {
|
|
return [
|
|
testCase(ComponentTests.__allTests__ComponentTests),
|
|
testCase(HashingPerformanceTests.__allTests__HashingPerformanceTests),
|
|
testCase(TypedFamilyPerformanceTests.__allTests__TypedFamilyPerformanceTests),
|
|
]
|
|
}
|
|
#endif
|