mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-14 05:21:12 +00:00
11 lines
320 B
Swift
11 lines
320 B
Swift
@testable import Account
|
|
import XCTest
|
|
|
|
final class AccountTests: XCTestCase {
|
|
func testExample() throws {
|
|
// This is an example of a functional test case.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct
|
|
// results.
|
|
XCTAssertEqual(Account().text, "Hello, World!")
|
|
}
|
|
}
|