# Как Пропустить Тестовый Метод в TestNG?

В TestNG для пропуска тестового метода можно использовать аннотацию `@Test` с параметром `enabled`. Если значение параметра `enabled` установлено в `false`, то тестовый метод будет пропущен при выполнении тестового сценария.

Пример:

```java
import org.testng.annotations.Test;

public class MyTest {

    @Test(enabled = false)
    public void skippedTestMethod() {
        // Этот метод будет пропущен при выполнении тестового сценария
        System.out.println("Этот метод будет пропущен");
    }

    @Test
    public void activeTestMethod() {
        // Этот метод будет выполнен при выполнении тестового сценария
        System.out.println("Этот метод будет выполнен");
    }
}
```

В приведенном примере метод `skippedTestMethod` будет пропущен, так как у него установлен параметр `enabled = false`. Метод `activeTestMethod` будет выполнен, так как параметр `enabled` не указан (по умолчанию считается `true`).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kaze.gitbook.io/qa-theory/teoriya-avtomatizirovannogo-testirovaniya/testng-junit/kak-propustit-testovyi-metod-v-testng.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
