From 3a95d5b46fb091bb7f6a6a47d286374415e72fe5 Mon Sep 17 00:00:00 2001 From: Lazar Otasevic <> Date: Tue, 10 Sep 2024 02:02:32 +0400 Subject: [PATCH] fix naming --- Tests/ViewInspectionTests/Elements/_Binding.swift | 2 +- Tests/ViewInspectionTests/Elements/_Environment.swift | 2 +- Tests/ViewInspectionTests/Elements/_State.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/ViewInspectionTests/Elements/_Binding.swift b/Tests/ViewInspectionTests/Elements/_Binding.swift index 910beac..71f3612 100644 --- a/Tests/ViewInspectionTests/Elements/_Binding.swift +++ b/Tests/ViewInspectionTests/Elements/_Binding.swift @@ -3,7 +3,7 @@ import XCTest @testable import ViewInspection @MainActor final class Test_Binding: XCTestCase { - func testBinding() throws { + func test_Binding() throws { struct Dummy: View { @Binding var x: Int let body = EmptyView() diff --git a/Tests/ViewInspectionTests/Elements/_Environment.swift b/Tests/ViewInspectionTests/Elements/_Environment.swift index e5c0bfc..8993785 100644 --- a/Tests/ViewInspectionTests/Elements/_Environment.swift +++ b/Tests/ViewInspectionTests/Elements/_Environment.swift @@ -3,7 +3,7 @@ import XCTest @testable import ViewInspection @MainActor final class Test_Environment: XCTestCase { - func testEnvironment() { + func test_Environment() { struct Dummy: View { @Environment(\.colorScheme) private var colorScheme let body = EmptyView() diff --git a/Tests/ViewInspectionTests/Elements/_State.swift b/Tests/ViewInspectionTests/Elements/_State.swift index d7bc60e..06b672e 100644 --- a/Tests/ViewInspectionTests/Elements/_State.swift +++ b/Tests/ViewInspectionTests/Elements/_State.swift @@ -3,7 +3,7 @@ import XCTest @testable import ViewInspection @MainActor final class Test_State: XCTestCase { - func testState() throws { + func test_State() throws { struct Dummy: View { @State private var x = 0 let body = EmptyView()