// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. namespace Microsoft.TestCommon { /// /// MSTest timeout constants for use with the . /// public class TimeoutConstant { private const int seconds = 1000; /// /// The default timeout for test methods. /// public const int DefaultTimeout = 30 * seconds; /// /// An extendedn timeout for longer running test methods. /// public const int ExtendedTimeout = 240 * seconds; } }