Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public class ClientAsyncAuthenticateTest
{
private readonly ITestOutputHelper _log;

public ClientAsyncAuthenticateTest()
public ClientAsyncAuthenticateTest(ITestOutputHelper output)
{
_log = TestLogging.GetInstance();
_log = output;
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public class ServerAllowNoEncryptionTest
{
private readonly ITestOutputHelper _log;

public ServerAllowNoEncryptionTest()
public ServerAllowNoEncryptionTest(ITestOutputHelper output)
{
_log = TestLogging.GetInstance();
_log = output;
}

// The following method is invoked by the RemoteCertificateValidationDelegate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ public class ServerAsyncAuthenticateTest : IDisposable
private readonly ITestOutputHelper _logVerbose;
private readonly X509Certificate2 _serverCertificate;

public ServerAsyncAuthenticateTest()
public ServerAsyncAuthenticateTest(ITestOutputHelper output)
{
_log = TestLogging.GetInstance();
_log = output;
_logVerbose = VerboseTestLogging.GetInstance();
_serverCertificate = Configuration.Certificates.GetServerCertificate();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public class ServerNoEncryptionTest
{
private readonly ITestOutputHelper _log;

public ServerNoEncryptionTest()
public ServerNoEncryptionTest(ITestOutputHelper output)
{
_log = TestLogging.GetInstance();
_log = output;
}

// The following method is invoked by the RemoteCertificateValidationDelegate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public class ServerRequireEncryptionTest
{
private readonly ITestOutputHelper _log;

public ServerRequireEncryptionTest()
public ServerRequireEncryptionTest(ITestOutputHelper output)
{
_log = TestLogging.GetInstance();
_log = output;
}

// The following method is invoked by the RemoteCertificateValidationDelegate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace System.Net.Security.Tests
internal static class TestConfiguration
{
public const int PassingTestTimeoutMilliseconds = 4 * 60 * 1000;
public const int FailingTestTimeoutMiliseconds = 250;
public const int FailingTestTimeoutMiliseconds = 3 * 1000;

public const string Realm = "TEST.COREFX.NET";
public const string KerberosUser = "krb_user";
Expand Down