Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit cf88cbf

Browse files
committed
Added timeout attribute on unit test assemblies.
1 parent 81941e2 commit cf88cbf

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

test/GitHub.InlineReviews.UnitTests/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Reflection;
22
using System.Runtime.CompilerServices;
33
using System.Runtime.InteropServices;
4+
using NUnit.Framework;
45

56
// General Information about an assembly is controlled through the following
67
// set of attributes. Change these attribute values to modify the information
@@ -34,3 +35,5 @@
3435
// [assembly: AssemblyVersion("1.0.*")]
3536
[assembly: AssemblyVersion("1.0.0.0")]
3637
[assembly: AssemblyFileVersion("1.0.0.0")]
38+
39+
[assembly: Timeout(2000)]

test/GitHub.UI.UnitTests/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Reflection;
22
using System.Runtime.CompilerServices;
33
using System.Runtime.InteropServices;
4+
using NUnit.Framework;
45

56
// General Information about an assembly is controlled through the following
67
// set of attributes. Change these attribute values to modify the information
@@ -34,3 +35,5 @@
3435
// [assembly: AssemblyVersion("1.0.*")]
3536
[assembly: AssemblyVersion("1.0.0.0")]
3637
[assembly: AssemblyFileVersion("1.0.0.0")]
38+
39+
[assembly: Timeout(2000)]

test/TrackingCollectionTests/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Reflection;
22
using System.Runtime.CompilerServices;
33
using System.Runtime.InteropServices;
4+
using NUnit.Framework;
45

56
// General Information about an assembly is controlled through the following
67
// set of attributes. Change these attribute values to modify the information
@@ -34,3 +35,5 @@
3435
// [assembly: AssemblyVersion("1.0.*")]
3536
[assembly: AssemblyVersion("1.0.0.0")]
3637
[assembly: AssemblyFileVersion("1.0.0.0")]
38+
39+
[assembly: Timeout(2000)]

test/UnitTests/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@
1010
[assembly: AssemblyDescription("")]
1111

1212
// The following GUID is for the ID of the typelib if this project is exposed to COM
13-
[assembly: Guid("7c0cb7e5-6c7b-4f11-8454-9e1a4747641c")]
13+
[assembly: Guid("7c0cb7e5-6c7b-4f11-8454-9e1a4747641c")]
14+
15+
[assembly: Timeout(2000)]

0 commit comments

Comments
 (0)