Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Delete duplicate file
  • Loading branch information
jkotas committed Sep 24, 2022
commit 587ba6eec6db50a85e1c39bfbbf12942e2f02817
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using System.Text.RegularExpressions;
using Xunit.Abstractions;

namespace System.Xml.XmlSchemaValidatorApiTests
namespace System.Xml.Tests
{
public class LineInfo
{
Expand Down Expand Up @@ -180,7 +180,6 @@ public ExceptionVerifier(string assemblyName, ExceptionVerificationFlags flags,
}
resReader.Dispose();
}
//break;
}
}

Expand Down Expand Up @@ -214,8 +213,7 @@ private void ExceptionInfoOutput()
"\n===== Original Exception Message =====\n" + _ex.Message +
"\n===== Resource Id =====\n" + fInfo.GetValue(_ex) +
"\n===== HelpLink =====\n" + _ex.HelpLink +
"\n===== Source =====\n" + _ex.Source /*+
"\n===== TargetSite =====\n" + ex.TargetSite + "\n"*/);
"\n===== Source =====\n" + _ex.Source);

_output.WriteLine(
"\n===== InnerException =====\n" + _ex.InnerException +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

<ItemGroup>
<Compile Include="AllowDefaultResolverContext.cs" />
<Compile Include="ExceptionVerifier.cs" />
<Compile Include="$(CommonTestPath)\TestUtilities\System\DisableParallelizationPerAssembly.cs" Link="Common\TestUtilities\System\DisableParallelizationPerAssembly.cs" />
</ItemGroup>

Expand Down Expand Up @@ -401,7 +402,6 @@
<ItemGroup>
<Compile Include="XmlSchema\XmlSchemaValidatorApi\Constructor_AddSchema.cs" />
<Compile Include="XmlSchema\XmlSchemaValidatorApi\CustomImplementations.cs" />
<Compile Include="XmlSchema\XmlSchemaValidatorApi\ExceptionVerifier.cs" />
<Compile Include="XmlSchema\XmlSchemaValidatorApi\GetExpectedAttributes.cs" />
<Compile Include="XmlSchema\XmlSchemaValidatorApi\GetExpectedParticles.cs" />
<Compile Include="XmlSchema\XmlSchemaValidatorApi\Initialize_EndValidation.cs" />
Expand Down Expand Up @@ -641,7 +641,6 @@
<Compile Include="Xslt\XslTransformApi\CThreads.cs" />
<Compile Include="Xslt\XslTransformApi\CXmlCache.cs" />
<Compile Include="Xslt\XslTransformApi\DataHelper.cs" />
<Compile Include="Xslt\XslTransformApi\ExceptionVerifier.cs" />
<Compile Include="Xslt\XslTransformApi\MyNavigator.cs" />
<Compile Include="Xslt\XslTransformApi\ReaderType.cs" />
<Compile Include="Xslt\XslTransformApi\ThreadFunc.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System.IO;
using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Collections;
using System.IO;
using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Collections;
using System.IO;
using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Collections;
using System.IO;
using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System.IO;
using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.

using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.

using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.

using System.Xml.Schema;
using System.Xml.Tests;
using Xunit;
using Xunit.Abstractions;

Expand Down
Loading