From 49b797b48cbedbea237764ba68913660047161c1 Mon Sep 17 00:00:00 2001 From: Nick Cipollo Date: Thu, 17 Oct 2024 12:54:33 -0400 Subject: [PATCH] Convert ModuleListTests.swift to swift testing --- Tests/WhoopDIKitTests/ModuleListTests.swift | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Tests/WhoopDIKitTests/ModuleListTests.swift b/Tests/WhoopDIKitTests/ModuleListTests.swift index 43ba767..fe7e1f3 100644 --- a/Tests/WhoopDIKitTests/ModuleListTests.swift +++ b/Tests/WhoopDIKitTests/ModuleListTests.swift @@ -1,8 +1,9 @@ -import XCTest +import Testing @testable import WhoopDIKit -class ModuleListTests: XCTestCase { - func test_emptyModuleList() { - XCTAssertTrue(EmptyModuleList().modules.isEmpty) +class ModuleListTests { + @Test + func emptyModuleList() { + #expect(EmptyModuleList().modules.isEmpty) } }