18 lines
327 B
Swift
18 lines
327 B
Swift
//
|
|
// UnitTests.swift
|
|
// UnitTests
|
|
//
|
|
// Created by Javier Cicchelli on 04/10/2024.
|
|
// Copyright © 2024 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import Testing
|
|
|
|
struct UnitTests {
|
|
|
|
@Test func example() async throws {
|
|
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
|
|
}
|
|
|
|
}
|