Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2020-07-08 16:23:11 +0300
committerGitHub <noreply@github.com>2020-07-08 16:23:11 +0300
commit6072e4d3a7a2a1493f514cdf4be75a3d56580e84 (patch)
tree56dfb8a93d2c7ed655eb2d3f125205413d4c8f28 /src/libraries/System.Net.Security/tests/UnitTests
parentedbb5c89690919968e6aca79334a4fb849d586bc (diff)
Update license headers (#38793)
Diffstat (limited to 'src/libraries/System.Net.Security/tests/UnitTests')
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeAuthenticatedStream.cs1
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs1
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/SslApplicationProtocolTests.cs3
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs3
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/SslStreamAllowedProtocolsTest.cs1
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/AuthenticationExceptionTest.cs3
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTest.cs3
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/InvalidCredentialExceptionTest.cs3
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/TlsAlertsMatchWindowsInterop.cs1
9 files changed, 5 insertions, 14 deletions
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeAuthenticatedStream.cs b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeAuthenticatedStream.cs
index ef92f9db15b..02fc379a212 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeAuthenticatedStream.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeAuthenticatedStream.cs
@@ -1,6 +1,5 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.IO;
using System.Threading;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
index 8b59ec4ceb9..66702b6c468 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
@@ -1,6 +1,5 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.Security.Authentication.ExtendedProtection;
using System.Security.Cryptography.X509Certificates;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/SslApplicationProtocolTests.cs b/src/libraries/System.Net.Security/tests/UnitTests/SslApplicationProtocolTests.cs
index 1da16c9c96a..34a11a05d94 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/SslApplicationProtocolTests.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/SslApplicationProtocolTests.cs
@@ -1,6 +1,5 @@
-// Licensed to the .NET Foundation under one or more agreements.
+// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using System.Runtime.InteropServices;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs b/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs
index dec1782352a..6a75b0bf2bf 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs
@@ -1,6 +1,5 @@
-// Licensed to the .NET Foundation under one or more agreements.
+// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using System.Security.Authentication;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/SslStreamAllowedProtocolsTest.cs b/src/libraries/System.Net.Security/tests/UnitTests/SslStreamAllowedProtocolsTest.cs
index d6ed5064722..97f98d27225 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/SslStreamAllowedProtocolsTest.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/SslStreamAllowedProtocolsTest.cs
@@ -1,6 +1,5 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.IO;
using System.Net.Test.Common;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/AuthenticationExceptionTest.cs b/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/AuthenticationExceptionTest.cs
index 707c74fc02d..343c857672a 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/AuthenticationExceptionTest.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/AuthenticationExceptionTest.cs
@@ -1,6 +1,5 @@
-// Licensed to the .NET Foundation under one or more agreements.
+// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.Security.Authentication;
using Xunit;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTest.cs b/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTest.cs
index 37fbc644e23..eb408bd84dc 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTest.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/ExtendedProtection/ExtendedProtectionPolicyTest.cs
@@ -1,6 +1,5 @@
-// Licensed to the .NET Foundation under one or more agreements.
+// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using System.Security.Authentication.ExtendedProtection;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/InvalidCredentialExceptionTest.cs b/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/InvalidCredentialExceptionTest.cs
index 163fd8edb1c..a04eb376c6d 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/InvalidCredentialExceptionTest.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/System/Security/Authentication/InvalidCredentialExceptionTest.cs
@@ -1,6 +1,5 @@
-// Licensed to the .NET Foundation under one or more agreements.
+// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using System.Security.Authentication;
using Xunit;
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/TlsAlertsMatchWindowsInterop.cs b/src/libraries/System.Net.Security/tests/UnitTests/TlsAlertsMatchWindowsInterop.cs
index a5374acd186..1481e030554 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/TlsAlertsMatchWindowsInterop.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/TlsAlertsMatchWindowsInterop.cs
@@ -1,6 +1,5 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
using Xunit;