From f7b7928b22454bbe1317b91e388dd4e51186ad32 Mon Sep 17 00:00:00 2001 From: Benny Wong Date: Sun, 15 Jun 2025 09:54:45 -0400 Subject: [PATCH] Include all test methods in allTests --- Tests/SwiftH3Tests/H3IndexTests.swift | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Tests/SwiftH3Tests/H3IndexTests.swift b/Tests/SwiftH3Tests/H3IndexTests.swift index 2523e72..bd19129 100644 --- a/Tests/SwiftH3Tests/H3IndexTests.swift +++ b/Tests/SwiftH3Tests/H3IndexTests.swift @@ -117,7 +117,14 @@ final class H3IndexTests: XCTestCase { ("testStringToH3Index", testStringToH3Index), ("testCoordToH3Index", testCoordToH3Index), ("testIsValid", testIsValid), + ("testH3IndexToString", testH3IndexToString), ("testResolution", testResolution), ("testToCoord", testToCoord), + ("testKRingIndices", testKRingIndices), + ("testParent", testParent), + ("testDirectParent", testDirectParent), + ("testChildren", testChildren), + ("testCenterChild", testCenterChild), + ("testDirectCenterChild", testDirectCenterChild), ] }