Skip to main content

BlinkTests/BlinkTests.swift

1//
2// BlinkTests.swift
3// BlinkTests
4//
5// Created by Alex Chan on 08/06/2023.
6//
8import XCTest
9@testable import Blink
11final class BlinkTests: XCTestCase {
13 override func setUpWithError() throws {
14 // Put setup code here. This method is called before the invocation of each test method in the class.
15 }
17 override func tearDownWithError() throws {
18 // Put teardown code here. This method is called after the invocation of each test method in the class.
19 }
21 func testExample() throws {
22 // This is an example of a functional test case.
23 // Use XCTAssert and related functions to verify your tests produce the correct results.
24 // Any test you write for XCTest can be annotated as throws and async.
25 // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error.
26 // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards.
27 }
29 func testPerformanceExample() throws {
30 // This is an example of a performance test case.
31 self.measure {
32 // Put the code you want to measure the time of here.
33 }
34 }