You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/TestBuildingBlocks/IntegrationTest.cs
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,18 @@
2
2
usingSystem.Text;
3
3
usingSystem.Text.Json;
4
4
usingJsonApiDotNetCore.Middleware;
5
+
usingXunit;
5
6
6
7
namespaceTestBuildingBlocks;
7
8
8
9
/// <summary>
9
-
/// A base class for tests that conveniently enables to execute HTTP requests against JSON:API endpoints.
10
+
/// A base class for tests that conveniently enables to execute HTTP requests against JSON:API endpoints. It throttles tests that are running in parallel
11
+
/// to avoid exceeding the maximum active database connections.
0 commit comments