10 lines
179 B
Swift
10 lines
179 B
Swift
import XCTest
|
|
@testable import RunPlus
|
|
|
|
final class RunPlusTests: XCTestCase {
|
|
func testLibraryLoads() {
|
|
let library = LocalTrack.loadLibrary()
|
|
XCTAssertNotNil(library)
|
|
}
|
|
}
|