From a2b96f638c3bcd775a2d28d73d0f0eae0000df0c Mon Sep 17 00:00:00 2001 From: Tal Aloni Date: Wed, 12 Jun 2024 11:33:53 +0300 Subject: [PATCH] Add missing copyright notices --- SMBLibrary.Tests/IntegrationTests/LoginTests.cs | 8 +++++++- .../NTFileStore/NTDirectoryFileSystemTests.cs | 9 ++++++--- SMBLibrary.Tests/NTFileStore/NTFileStoreTests.cs | 10 ++++++---- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/SMBLibrary.Tests/IntegrationTests/LoginTests.cs b/SMBLibrary.Tests/IntegrationTests/LoginTests.cs index e05bc32..a77ea06 100644 --- a/SMBLibrary.Tests/IntegrationTests/LoginTests.cs +++ b/SMBLibrary.Tests/IntegrationTests/LoginTests.cs @@ -1,4 +1,10 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* Copyright (C) 2024 Tal Aloni . All rights reserved. + * + * You can redistribute this program and/or modify it under the terms of + * the GNU Lesser Public License as published by the Free Software Foundation, + * either version 3 of the License, or (at your option) any later version. + */ +using Microsoft.VisualStudio.TestTools.UnitTesting; using SMBLibrary.Authentication.GSSAPI; using SMBLibrary.Authentication.NTLM; using SMBLibrary.Client; diff --git a/SMBLibrary.Tests/NTFileStore/NTDirectoryFileSystemTests.cs b/SMBLibrary.Tests/NTFileStore/NTDirectoryFileSystemTests.cs index 316fe4b..cdfacbc 100644 --- a/SMBLibrary.Tests/NTFileStore/NTDirectoryFileSystemTests.cs +++ b/SMBLibrary.Tests/NTFileStore/NTDirectoryFileSystemTests.cs @@ -1,8 +1,11 @@ -using System; -using System.Collections.Generic; +/* Copyright (C) 2019-2024 Tal Aloni . All rights reserved. + * + * You can redistribute this program and/or modify it under the terms of + * the GNU Lesser Public License as published by the Free Software Foundation, + * either version 3 of the License, or (at your option) any later version. + */ using System.IO; using Microsoft.VisualStudio.TestTools.UnitTesting; -using SMBLibrary; using SMBLibrary.Win32; namespace SMBLibrary.Tests diff --git a/SMBLibrary.Tests/NTFileStore/NTFileStoreTests.cs b/SMBLibrary.Tests/NTFileStore/NTFileStoreTests.cs index f483c71..23d4349 100644 --- a/SMBLibrary.Tests/NTFileStore/NTFileStoreTests.cs +++ b/SMBLibrary.Tests/NTFileStore/NTFileStoreTests.cs @@ -1,9 +1,11 @@ -using System; -using System.Collections.Generic; +/* Copyright (C) 2019-2024 Tal Aloni . All rights reserved. + * + * You can redistribute this program and/or modify it under the terms of + * the GNU Lesser Public License as published by the Free Software Foundation, + * either version 3 of the License, or (at your option) any later version. + */ using System.Threading; using Microsoft.VisualStudio.TestTools.UnitTesting; -using SMBLibrary; -using SMBLibrary.Win32; namespace SMBLibrary.Tests {