blob: 416c74c3f769cd1e196bc82d34ad1e305a0eedd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// ShedCalcTests.swift
// ShedCalcTests
//
// Created by Jacky Jack on 28/07/2026.
//
import Testing
@testable import ShedCalc
struct ShedCalcTests {
@Test func example() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
// Swift Testing Documentation
// https://developer.apple.com/documentation/testing
}
}
|