mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-20 07:20:59 +00:00
12 lines
340 B
Swift
12 lines
340 B
Swift
|
import XCTest
|
||
|
@testable import Account
|
||
|
|
||
|
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!")
|
||
|
}
|
||
|
}
|