IceCubesApp/Packages/Account/Tests/AccountTests/AccountTests.swift

12 lines
320 B
Swift
Raw Normal View History

2022-11-29 10:46:02 +00:00
@testable import Account
2023-01-17 10:36:01 +00:00
import XCTest
2022-11-29 10:46:02 +00:00
final class AccountTests: XCTestCase {
2023-01-17 10:36:01 +00:00
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!")
}
2022-11-29 10:46:02 +00:00
}