From 06c5a5fc658fbdefd8eb71bb8ff7dd84aa254e3a Mon Sep 17 00:00:00 2001 From: Kenta Kubo <601636+kkebo@users.noreply.github.com> Date: Wed, 3 Sep 2025 00:39:24 +0900 Subject: [PATCH] test: migrate to Testing from XCTest --- DNSecureTests/DNSecureTests.swift | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/DNSecureTests/DNSecureTests.swift b/DNSecureTests/DNSecureTests.swift index ddcb59b..94bd9a5 100644 --- a/DNSecureTests/DNSecureTests.swift +++ b/DNSecureTests/DNSecureTests.swift @@ -5,28 +5,6 @@ // Created by Kenta Kubo on 7/1/20. // -import XCTest +import Testing @testable import DNSecure - -class DNSecureTests: XCTestCase { - override func setUpWithError() throws { - // Put setup code here. This method is called before the invocation of each test method in the class. - } - - override func tearDownWithError() throws { - // Put teardown code here. This method is called after the invocation of each test method in the class. - } - - func testExample() throws { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct results. - } - - func testPerformanceExample() throws { - // This is an example of a performance test case. - self.measure { - // Put the code you want to measure the time of here. - } - } -}