37 lines
2.1 KiB
Properties
Raw Normal View History

#
#
# ******************************************************************************
# *
# * This program and the accompanying materials are made available under the
# * terms of the Apache License, Version 2.0 which is available at
# * https://www.apache.org/licenses/LICENSE-2.0.
# *
# * See the NOTICE file distributed with this work for additional
# * information regarding copyright ownership.
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# * License for the specific language governing permissions and limitations
# * under the License.
# *
# * SPDX-License-Identifier: Apache-2.0
# *****************************************************************************
#
#
# configuration parameter to configure when timeouts are applied. There are three modes.
#enabled, disabled, disabled_on_debug
junit.jupiter.execution.timeout.mode=enabled
#Default timeout for all testable and lifecycle methods.
junit.jupiter.execution.timeout.default=60 s
#junit.jupiter.execution.timeout.testable.method.default Default timeout for all testable methods.
#junit.jupiter.execution.timeout.test.method.default Default timeout for @Test methods.
#junit.jupiter.execution.timeout.testtemplate.method.default Default timeout for @TestTemplate methods.
#junit.jupiter.execution.timeout.testfactory.method.default Default timeout for @TestFactory methods.
#junit.jupiter.execution.timeout.lifecycle.method.default Default timeout for all lifecycle methods.
#junit.jupiter.execution.timeout.beforeall.method.default Default timeout for @BeforeAll methods.
#junit.jupiter.execution.timeout.beforeeach.method.default Default timeout for @BeforeEach methods.
#junit.jupiter.execution.timeout.afterall.method.default Default timeout for @AfterAll methods.
#junit.jupiter.execution.timeout.aftereach.method.default Default timeout for @AfterEach methods.