Removed the UnitTests boilerplate from the unit tests target.

This commit is contained in:
Javier Cicchelli 2024-10-05 10:40:14 +02:00
parent f090784973
commit 0f8a0c8fb2
2 changed files with 0 additions and 19 deletions

View File

@ -36,7 +36,6 @@
UITests/UITests.swift, UITests/UITests.swift,
UITests/UITestsLaunchTests.swift, UITests/UITestsLaunchTests.swift,
UnitTests/Tests/UseCases/RunProcessUseCaseTests.swift, UnitTests/Tests/UseCases/RunProcessUseCaseTests.swift,
UnitTests/UnitTests.swift,
); );
target = 46D4BE762CB06ED300FCFB84 /* Piper */; target = 46D4BE762CB06ED300FCFB84 /* Piper */;
}; };
@ -44,7 +43,6 @@
isa = PBXFileSystemSynchronizedBuildFileExceptionSet; isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
membershipExceptions = ( membershipExceptions = (
UnitTests/Tests/UseCases/RunProcessUseCaseTests.swift, UnitTests/Tests/UseCases/RunProcessUseCaseTests.swift,
UnitTests/UnitTests.swift,
); );
target = 46D4BED32CB07C7A00FCFB84 /* UnitTests */; target = 46D4BED32CB07C7A00FCFB84 /* UnitTests */;
}; };

View File

@ -1,17 +0,0 @@
//
// 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.
}
}