12 lines
397 B
Swift
12 lines
397 B
Swift
|
import XCTest
|
||
|
@testable import SwiftExtensions
|
||
|
|
||
|
final class SwiftExtensionsTests: XCTestCase {
|
||
|
func testExample() {
|
||
|
// This is an example of a functional test case.
|
||
|
// Use XCTAssert and related functions to verify your tests produce the correct
|
||
|
// results.
|
||
|
XCTAssertEqual(SwiftExtensions().text, "Hello, World!")
|
||
|
}
|
||
|
}
|