Skip to content

Commit a6b3070

Browse files
committed
Clean up test project references.
1 parent bcf2c99 commit a6b3070

File tree

6 files changed

+7
-12
lines changed

6 files changed

+7
-12
lines changed

IntegrationTests/BinaryServiceTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace IntegrationTests
77
{
88
public class BinaryServiceTests : BinaryService
99
{
10-
[Fact, Trait("Category", "Binary")]
10+
[Fact]
1111
public void DownloadZipResultNotEmpty()
1212
{
1313
const string url = "https://chromedriver.storage.googleapis.com/2.27/chromedriver_win32.zip";
@@ -17,7 +17,7 @@ public void DownloadZipResultNotEmpty()
1717
Assert.True(File.Exists(result));
1818
}
1919

20-
[Fact, Trait("Category", "Binary")]
20+
[Fact]
2121
public void UnZipResultNotEmpty()
2222
{
2323
var zipPath = Path.Combine(Directory.GetCurrentDirectory(), "Assets", "unzipable.zip");
@@ -28,7 +28,7 @@ public void UnZipResultNotEmpty()
2828
Assert.True(File.Exists(result));
2929
}
3030

31-
[Fact, Trait("Category", "Binary")]
31+
[Fact]
3232
public void RemoveZipTargetMissing()
3333
{
3434
var zipPath = Path.Combine(Directory.GetCurrentDirectory(), "Assets", "removable.zip");

IntegrationTests/DriverDownloadTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ IEnumerator IEnumerable.GetEnumerator()
3232

3333
public class DriverDownloadTests
3434
{
35-
[Theory, ClassData(typeof(DriverData)), Trait("Category", "Config")]
35+
[Theory, ClassData(typeof(DriverData))]
3636
protected void DriverDownloadTest(IDriverConfig driverConfig)
3737
{
3838
new DriverManager().SetUpDriver(driverConfig);

IntegrationTests/IntegrationTests.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
3636
<ItemGroup>
37-
<Reference Include="AngleSharp, Version=0.9.9.0, Culture=neutral, PublicKeyToken=e83494dcdc6d31ea">
38-
<HintPath>..\packages\AngleSharp.0.9.9.2\lib\net45\AngleSharp.dll</HintPath>
39-
</Reference>
4037
<Reference Include="System" />
4138
<Reference Include="System.Core" />
4239
<Reference Include="System.Data" />
@@ -79,7 +76,6 @@
7976
<Content Include="Assets\unzipable.zip">
8077
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
8178
</Content>
82-
<Content Include="packages.config" />
8379
</ItemGroup>
8480
<ItemGroup>
8581
<None Include="packages.config" />

IntegrationTests/VariableServiceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace IntegrationTests
77
{
88
public class VariableServiceTests : VariableService
99
{
10-
[Fact, Trait("Category", "Variable")]
10+
[Fact]
1111
public void UpdatePathResultValid()
1212
{
1313
var filePath = Path.Combine(Directory.GetCurrentDirectory(), "Assets", "file.txt");

IntegrationTests/VersionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ IEnumerator IEnumerable.GetEnumerator()
3232

3333
public class VersionTests
3434
{
35-
[Theory, ClassData(typeof(VersionData)), Trait("Category", "Version")]
35+
[Theory, ClassData(typeof(VersionData))]
3636
protected void VersionTest(IDriverConfig driverConfig, string pattern)
3737
{
3838
var version = driverConfig.GetLatestVersion();

IntegrationTests/packages.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="AngleSharp" version="0.9.9.2" targetFramework="net452" />
43
<package id="xunit" version="2.3.1" targetFramework="net452" />
5-
<package id="xunit.abstractions" version="2.0.1" targetFramework="net462" />
4+
<package id="xunit.abstractions" version="2.0.1" targetFramework="net452" />
65
<package id="xunit.analyzers" version="0.8.0" targetFramework="net452" />
76
<package id="xunit.assert" version="2.3.1" targetFramework="net452" />
87
<package id="xunit.core" version="2.3.1" targetFramework="net452" />

0 commit comments

Comments
 (0)