12 lines
406 B
Swift
12 lines
406 B
Swift
import XCTest
|
|
@testable import CustomFontsPackage
|
|
|
|
final class CustomFontsPackageTests: 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(CustomFontsPackage().text, "Hello, World!")
|
|
}
|
|
}
|