mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 09:15:47 +00:00
16d84d0395
* Bump coverlet.collector from 6.0.2 to 6.0.4 Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 6.0.2 to 6.0.4. - [Release notes](https://github.com/coverlet-coverage/coverlet/releases) - [Commits](https://github.com/coverlet-coverage/coverlet/compare/v6.0.2...v6.0.4) --- updated-dependencies: - dependency-name: coverlet.collector dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update test deps * update test deps * some fixes * group dependencies * analyzer fixes * just group them all together * more cleanup * silent analyzers -> suggestion * restore constant --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Robert Hague <rh@johnstreetcapital.com> Co-authored-by: Rob Hague <rob.hague00@gmail.com>
20 lines
605 B
C#
20 lines
605 B
C#
namespace Renci.SshNet.IntegrationTests
|
|
{
|
|
[TestClass]
|
|
public static class TestInitializer
|
|
{
|
|
[AssemblyInitialize]
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0060:Remove unused parameter", Justification = "MSTests requires context parameter")]
|
|
public static async Task Initialize(TestContext context)
|
|
{
|
|
await InfrastructureFixture.Instance.InitializeAsync();
|
|
}
|
|
|
|
[AssemblyCleanup]
|
|
public static async Task Cleanup()
|
|
{
|
|
await InfrastructureFixture.Instance.DisposeAsync();
|
|
}
|
|
}
|
|
}
|