Skip to content

Commit 739419b

Browse files
csproj format fixes
1 parent 32ada56 commit 739419b

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

LightWeight.MsTest/AssertCustom.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
public static class AssertCustom
44
{
5-
/// <summary>
6-
/// Compares two strings, in case of non equality, indicating the first difference in the exception message.
7-
/// Works like the <see cref="Assert.AreEqual(string, string, bool)"/> method.
8-
/// </summary>
9-
/// <param name="expected">The first string to compare. This is the string the tests expects.</param>
10-
/// <param name="actual">The second string to compare. This is the string produced by the code under test.</param>
11-
/// <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison. (true indicates a case-insensitive comparison.)</param>
12-
/// <exception cref="AssertFailedException">Thrown if expected is not equal to actual.</exception>
135
public static void AreEqual(string expected, string actual, bool ignoreCase = false)
146
{
157
var areEqual = string.Compare(expected, actual, ignoreCase ? System.StringComparison.OrdinalIgnoreCase : System.StringComparison.Ordinal);

Tests/LightWeight.AdoNet.Tests/LightWeight.AdoNetTests.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
99
</ItemGroup>
1010

11+
<ItemGroup>
12+
<AssemblyAttribute Include="Microsoft.VisualStudio.TestTools.UnitTesting.ParallelizeAttribute">
13+
<Scope>Microsoft.VisualStudio.TestTools.UnitTesting.ExecutionScope.MethodLevel</Scope>
14+
<Scope_IsLiteral>true</Scope_IsLiteral>
15+
</AssemblyAttribute>
16+
</ItemGroup>
17+
1118
<ItemGroup>
1219
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
1320
<PackageReference Include="MSTest.TestAdapter" Version="4.0.0" />

0 commit comments

Comments
 (0)