14 lines
345 B
Swift
14 lines
345 B
Swift
import XCTest
|
|
import ElementaryCyclesSearch
|
|
|
|
#if !os(macOS)
|
|
public func allTests() -> [XCTestCaseEntry] {
|
|
return [
|
|
testCase(AdjacencyListTests.allTests),
|
|
testCase(ElementaryCyclesSearchTests.allTests),
|
|
testCase(AdjacencyMatrixTests.allTests),
|
|
testCase(StrongConnectedComponentsTests.allTests),
|
|
]
|
|
}
|
|
#endif
|