Skip to content

Commit

Permalink
Convert ModuleListTests.swift to swift testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ncipollo committed Oct 17, 2024
1 parent 09105e3 commit 49b797b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Tests/WhoopDIKitTests/ModuleListTests.swift
Original file line number Diff line number Diff line change
@@ -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)
}
}

0 comments on commit 49b797b

Please sign in to comment.