Skip to content

Commit cbefe87

Browse files
committed
Remove duplicate base class.
1 parent 031f0a1 commit cbefe87

9 files changed

+9
-18
lines changed

src/Renci.SshNet.Tests/Classes/SftpClientTest.ChangeDirectory.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
22
using Renci.SshNet.Common;
3-
using Renci.SshNet.Tests.Common;
43
using Renci.SshNet.Tests.Properties;
54

65
namespace Renci.SshNet.Tests.Classes
76
{
87
/// <summary>
98
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
109
/// </summary>
11-
public partial class SftpClientTest : TestBase
10+
public partial class SftpClientTest
1211
{
1312
[TestMethod]
1413
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.CreateDirectory.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
22
using Renci.SshNet.Common;
3-
using Renci.SshNet.Tests.Common;
43
using Renci.SshNet.Tests.Properties;
54
using System;
65

@@ -9,7 +8,7 @@ namespace Renci.SshNet.Tests.Classes
98
/// <summary>
109
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
1110
/// </summary>
12-
public partial class SftpClientTest : TestBase
11+
public partial class SftpClientTest
1312
{
1413
[TestMethod]
1514
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.DeleteDirectory.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
22
using Renci.SshNet.Common;
3-
using Renci.SshNet.Tests.Common;
43
using Renci.SshNet.Tests.Properties;
54
using System;
65

@@ -9,7 +8,7 @@ namespace Renci.SshNet.Tests.Classes
98
/// <summary>
109
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
1110
/// </summary>
12-
public partial class SftpClientTest : TestBase
11+
public partial class SftpClientTest
1312
{
1413
[TestMethod]
1514
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.DeleteFile.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
2-
using Renci.SshNet.Tests.Common;
32
using Renci.SshNet.Tests.Properties;
43
using System;
54

@@ -8,7 +7,7 @@ namespace Renci.SshNet.Tests.Classes
87
/// <summary>
98
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
109
/// </summary>
11-
public partial class SftpClientTest : TestBase
10+
public partial class SftpClientTest
1211
{
1312
[TestMethod]
1413
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.Download.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
22
using Renci.SshNet.Common;
3-
using Renci.SshNet.Tests.Common;
43
using Renci.SshNet.Tests.Properties;
54
using System;
65
using System.IO;
@@ -10,7 +9,7 @@ namespace Renci.SshNet.Tests.Classes
109
/// <summary>
1110
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
1211
/// </summary>
13-
public partial class SftpClientTest : TestBase
12+
public partial class SftpClientTest
1413
{
1514
[TestMethod]
1615
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.ListDirectory.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
22
using Renci.SshNet.Common;
3-
using Renci.SshNet.Tests.Common;
43
using Renci.SshNet.Tests.Properties;
54
using System;
65
using System.Diagnostics;
@@ -11,7 +10,7 @@ namespace Renci.SshNet.Tests.Classes
1110
/// <summary>
1211
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
1312
/// </summary>
14-
public partial class SftpClientTest : TestBase
13+
public partial class SftpClientTest
1514
{
1615
[TestMethod]
1716
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.RenameFile.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
2-
using Renci.SshNet.Tests.Common;
32
using Renci.SshNet.Tests.Properties;
43
using System;
54
using System.IO;
@@ -9,7 +8,7 @@ namespace Renci.SshNet.Tests.Classes
98
/// <summary>
109
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
1110
/// </summary>
12-
public partial class SftpClientTest : TestBase
11+
public partial class SftpClientTest
1312
{
1413
[TestMethod]
1514
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.SynchronizeDirectories.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
2-
using Renci.SshNet.Tests.Common;
32
using Renci.SshNet.Tests.Properties;
43
using System.Diagnostics;
54
using System.IO;
@@ -10,7 +9,7 @@ namespace Renci.SshNet.Tests.Classes
109
/// <summary>
1110
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
1211
/// </summary>
13-
public partial class SftpClientTest : TestBase
12+
public partial class SftpClientTest
1413
{
1514
[TestMethod]
1615
[TestCategory("Sftp")]

src/Renci.SshNet.Tests/Classes/SftpClientTest.Upload.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
22
using Renci.SshNet.Common;
33
using Renci.SshNet.Sftp;
4-
using Renci.SshNet.Tests.Common;
54
using Renci.SshNet.Tests.Properties;
65
using System;
76
using System.Collections.Generic;
@@ -13,7 +12,7 @@ namespace Renci.SshNet.Tests.Classes
1312
/// <summary>
1413
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
1514
/// </summary>
16-
public partial class SftpClientTest : TestBase
15+
public partial class SftpClientTest
1716
{
1817
[TestMethod]
1918
[TestCategory("Sftp")]

0 commit comments

Comments
 (0)