diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index adbcafe3..25d1e941 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -54,7 +54,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest, windows-2025-vs2026] steps: - uses: actions/checkout@v6 @@ -90,7 +90,7 @@ jobs: run: dotnet test --project ./tests/NuGetUtility.UrlToLicenseMapping.Test/NuGetUtility.UrlToLicenseMapping.Test.csproj --configuration Release --no-restore test_windows: - runs-on: windows-latest + runs-on: windows-2025-vs2026 strategy: matrix: framework: [net8.0, net472, net9.0, net10.0] @@ -112,7 +112,7 @@ jobs: run: msbuild -t:rebuild -restore -p:RestorePackagesConfig=true -property:Configuration=TestWindows - name: test - uses: josepho0918/vstest-action@640704dc17dc7debcbd5f54213f39cf448d922a7 + uses: josepho0918/vstest-action@d188330fa1e2f802e65637e8fed0e04e0c7f8387 with: testAssembly: "NuGet*.Test.dll" searchFolder: "tests/*/bin/TestWindows/${{ matrix.framework }}/" @@ -231,7 +231,7 @@ jobs: } check_licenses_net472: - runs-on: windows-latest + runs-on: windows-2025-vs2026 strategy: matrix: project: [App, Tests, ProjectWithReferenceContainingLicenseExpression, ProjectWithReferenceContainingFileLicense, ProjectWithReferenceContainingWindowsSpecificPath] @@ -372,7 +372,7 @@ jobs: exit 1; } check_version_command_net472: - runs-on: windows-latest + runs-on: windows-2025-vs2026 steps: - uses: actions/checkout@v6 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5dd2fe4..25014665 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: windows-latest + runs-on: windows-2025-vs2026 steps: - uses: actions/checkout@v6 @@ -33,7 +33,7 @@ jobs: run: msbuild -t:rebuild -restore -p:RestorePackagesConfig=true -property:Configuration=Release - name: test - uses: josepho0918/vstest-action@640704dc17dc7debcbd5f54213f39cf448d922a7 + uses: josepho0918/vstest-action@d188330fa1e2f802e65637e8fed0e04e0c7f8387 with: testAssembly: "NuGet*.Test.dll" searchFolder: "tests/*/bin/Release/net9.0/" diff --git a/README.md b/README.md index 2586c013..767f277d 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ nuget-license [options] | `-err`, `--error-only` | When set, only validation errors are shown. | | `-include-ignored`, `--include-ignored-packages` | When set, ignored packages are included in the output. | | `-exclude-projects`, `--exclude-projects-matching ` | Specifies projects to exclude from analysis. You can provide either a JSON file (see [docs/exclude-projects-json.md](docs/exclude-projects-json.md)), or a semicolon-separated list (e.g., `"*Test*;Legacy*"`). Wildcards (`*`) are supported. | +| `--exclude-publish-false` | Excludes packages marked with `false` metadata in the project file. This also recursively excludes transitive dependencies. A package is only excluded if all paths leading to it originate from a `Publish="false"` reference (consistent with `dotnet publish` behavior). | | `-isp`, `--include-shared-projects` | Include shared projects (`.shproj`). | | `-f`, `--target-framework ` | Analyze for a specific Target Framework Moniker. | | `-fo`, `--file-output ` | Write output to a file instead of console. | diff --git a/integration/ProjectWithReferenceContainingFileLicense/ProjectWithReferenceContainingFileLicense.csproj b/integration/ProjectWithReferenceContainingFileLicense/ProjectWithReferenceContainingFileLicense.csproj index 5b74406c..6de11c81 100644 --- a/integration/ProjectWithReferenceContainingFileLicense/ProjectWithReferenceContainingFileLicense.csproj +++ b/integration/ProjectWithReferenceContainingFileLicense/ProjectWithReferenceContainingFileLicense.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/NuGetLicense/ICommandLineOptions.cs b/src/NuGetLicense/ICommandLineOptions.cs index 6a017b09..a7fa5d37 100644 --- a/src/NuGetLicense/ICommandLineOptions.cs +++ b/src/NuGetLicense/ICommandLineOptions.cs @@ -23,5 +23,6 @@ public interface ICommandLineOptions public string? TargetFramework { get; } public string? DestinationFile { get; } public string? LicenseFileMappings { get; } + public bool ExcludePublishFalse { get; } } } diff --git a/src/NuGetLicense/LicenseValidationOrchestrator.cs b/src/NuGetLicense/LicenseValidationOrchestrator.cs index 7f3197a0..171f3423 100644 --- a/src/NuGetLicense/LicenseValidationOrchestrator.cs +++ b/src/NuGetLicense/LicenseValidationOrchestrator.cs @@ -12,6 +12,7 @@ using NuGetUtility.ReferencedPackagesReader; using NuGetUtility.Wrapper.HttpClientWrapper; using NuGetUtility.Wrapper.MsBuildWrapper; +using NuGetUtility.Wrapper.NuGetWrapper.Frameworks; using NuGetUtility.Wrapper.NuGetWrapper.Packaging.Core; using NuGetUtility.Wrapper.NuGetWrapper.ProjectModel; using NuGetUtility.Wrapper.NuGetWrapper.Protocol; @@ -62,7 +63,12 @@ public async Task ValidateAsync(ICommandLineOptions options, CancellationTo IOutputFormatter output = _optionsParser.GetOutputFormatter(options.OutputType, options.ReturnErrorsOnly, options.IncludeIgnoredPackages); var projectCollector = new ProjectsCollector(_solutionPersistance, _fileSystem); - var projectReader = new ReferencedPackageReader(_msBuild, new LockFileFactory(), _packagesConfigReader); + var projectReader = new ReferencedPackageReader( + _msBuild, + new LockFileFactory(), + new NuGetFrameworkUtility(), + new AssetsPackageDependencyReader(new NuGetFrameworkUtility()), + _packagesConfigReader); var validator = new LicenseValidator.LicenseValidator(licenseMappings, allowedLicensesArray, licenseDownloader, @@ -71,7 +77,7 @@ public async Task ValidateAsync(ICommandLineOptions options, CancellationTo string[] excludedProjectsArray = _optionsParser.GetExcludedProjects(options.ExcludedProjects); IEnumerable projects = (await inputFiles.SelectManyAsync(projectCollector.GetProjectsAsync)).Where(p => !Array.Exists(excludedProjectsArray, ignored => p.PathLike(ignored))); - IEnumerable packagesForProject = GetPackagesPerProject(projects, projectReader, options.IncludeTransitive, options.TargetFramework, options.IncludeSharedProjects, out IReadOnlyCollection projectReaderExceptions); + IEnumerable packagesForProject = GetPackagesPerProject(projects, projectReader, options.IncludeTransitive, options.TargetFramework, options.ExcludePublishFalse, options.IncludeSharedProjects, out IReadOnlyCollection projectReaderExceptions); IAsyncEnumerable downloadedLicenseInformation = packagesForProject.SelectMany(p => GetPackageInformations(p, overridePackageInformationArray, cancellationToken)); var results = (await validator.Validate(downloadedLicenseInformation, cancellationToken)).ToList(); @@ -135,6 +141,7 @@ private static IReadOnlyCollection GetPackagesPer ReferencedPackageReader reader, bool includeTransitive, string? targetFramework, + bool excludePublishFalse, bool includeSharedProjects, out IReadOnlyCollection exceptions) { @@ -147,7 +154,7 @@ private static IReadOnlyCollection GetPackagesPer { try { - IEnumerable installedPackages = reader.GetInstalledPackages(project, includeTransitive, targetFramework); + IEnumerable installedPackages = reader.GetInstalledPackages(project, includeTransitive, targetFramework, excludePublishFalse); result.Add(new ProjectWithReferencedPackages(project, installedPackages)); } catch (Exception e) diff --git a/src/NuGetLicense/NuGetLicense.csproj b/src/NuGetLicense/NuGetLicense.csproj index b00e8588..dadb859f 100644 --- a/src/NuGetLicense/NuGetLicense.csproj +++ b/src/NuGetLicense/NuGetLicense.csproj @@ -27,8 +27,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/NuGetLicense/Output/Csv/CsvOutputFormatter.cs b/src/NuGetLicense/Output/Csv/CsvOutputFormatter.cs index 8a442109..284179d3 100644 --- a/src/NuGetLicense/Output/Csv/CsvOutputFormatter.cs +++ b/src/NuGetLicense/Output/Csv/CsvOutputFormatter.cs @@ -11,7 +11,7 @@ public class CsvOutputFormatter : IOutputFormatter private readonly bool _printErrorsOnly; private readonly bool _skipIgnoredPackages; - public CsvOutputFormatter(bool printErrorsOnly = false, bool skipIgnoredPackages = false) + public CsvOutputFormatter(bool printErrorsOnly, bool skipIgnoredPackages) { _printErrorsOnly = printErrorsOnly; _skipIgnoredPackages = skipIgnoredPackages; @@ -38,7 +38,7 @@ await writer.WriteLineAsync( foreach (var license in results) { - var row = new[] + string[] row = new[] { EscapeCsvValue(license.PackageId), EscapeCsvValue(license.PackageVersion.ToString()), @@ -66,7 +66,7 @@ private static string EscapeCsvValue(string? value) if (value.Contains(',') || value.Contains('"') || value.Contains('\n') || value.Contains('\r')) { - var escaped = value!.Replace("\"", "\"\""); + string escaped = value!.Replace("\"", "\"\""); return $"\"{escaped}\""; } @@ -75,7 +75,7 @@ private static string EscapeCsvValue(string? value) private static string GetValidationErrorsString(IEnumerable errors) { - var result = string.Join("; ", errors.Select(e => EscapeCsvValue($"{e.Error} ({e.Context})"))); + string result = string.Join("; ", errors.Select(e => EscapeCsvValue($"{e.Error} ({e.Context})"))); return EscapeCsvValue(result); } } diff --git a/src/NuGetLicense/Program.cs b/src/NuGetLicense/Program.cs index d75071ce..16b27bc4 100644 --- a/src/NuGetLicense/Program.cs +++ b/src/NuGetLicense/Program.cs @@ -65,6 +65,9 @@ public class Program : ICommandLineOptions [Option("-file-mapping|--licensefile-to-license-mappings", Description = "File in json format that contains a dictionary to map license files to licenses.")] public string? LicenseFileMappings { get; set; } + [Option("--exclude-publish-false", Description = "If set, packages with false metadata are excluded from analysis.")] + public bool ExcludePublishFalse { get; set; } + public async Task OnExecuteAsync(CommandLineApplication app, CancellationToken cancellationToken) { // Check if mandatory parameters are provided @@ -94,6 +97,7 @@ public async Task OnExecuteAsync(CommandLineApplication app, CancellationTo return await orchestrator.ValidateAsync(this, cancellationToken); } + private static string GetVersion() => typeof(Program).Assembly.GetCustomAttribute()?.InformationalVersion ?? string.Empty; diff --git a/src/NuGetUtility/NuGetUtility.csproj b/src/NuGetUtility/NuGetUtility.csproj index 0f50f7f8..b28b8f26 100644 --- a/src/NuGetUtility/NuGetUtility.csproj +++ b/src/NuGetUtility/NuGetUtility.csproj @@ -1,4 +1,4 @@ - + net472;net8.0;net9.0;net10.0 @@ -35,13 +35,13 @@ - + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/NuGetUtility/ReferencedPackagesReader/ReferencedPackageReader.cs b/src/NuGetUtility/ReferencedPackagesReader/ReferencedPackageReader.cs index 40764c3b..a1973bfe 100644 --- a/src/NuGetUtility/ReferencedPackagesReader/ReferencedPackageReader.cs +++ b/src/NuGetUtility/ReferencedPackagesReader/ReferencedPackageReader.cs @@ -4,6 +4,7 @@ using System.Diagnostics.CodeAnalysis; using NuGetUtility.Extensions; using NuGetUtility.Wrapper.MsBuildWrapper; +using NuGetUtility.Wrapper.NuGetWrapper.Frameworks; using NuGetUtility.Wrapper.NuGetWrapper.Packaging.Core; using NuGetUtility.Wrapper.NuGetWrapper.ProjectModel; @@ -13,23 +14,42 @@ public class ReferencedPackageReader { private const string ProjectReferenceIdentifier = "project"; private readonly ILockFileFactory _lockFileFactory; + private readonly INuGetFrameworkUtility _nuGetFrameworkUtility; + private readonly IAssetsPackageDependencyReader _assetsPackageDependencyReader; private readonly IPackagesConfigReader _packagesConfigReader; private readonly IMsBuildAbstraction _msBuild; public ReferencedPackageReader(IMsBuildAbstraction msBuild, ILockFileFactory lockFileFactory, + INuGetFrameworkUtility nuGetFrameworkUtility, + IAssetsPackageDependencyReader assetsPackageDependencyReader, IPackagesConfigReader packagesConfigReader) { _msBuild = msBuild; _lockFileFactory = lockFileFactory; + _nuGetFrameworkUtility = nuGetFrameworkUtility; + _assetsPackageDependencyReader = assetsPackageDependencyReader; _packagesConfigReader = packagesConfigReader; } - public IEnumerable GetInstalledPackages(string projectPath, bool includeTransitive, string? targetFramework = null) + /// + /// Gets installed NuGet packages for the specified project. + /// + /// Path to the project file. + /// True to include transitive dependencies; otherwise, false. + /// + /// Target framework moniker to evaluate. If null, all available target frameworks are evaluated. + /// + /// + /// True to exclude packages with Publish="false" metadata. When transitive dependencies are included, + /// packages reachable only through those excluded roots are also excluded. + /// + /// Resolved package identities from project assets or packages.config. + public IEnumerable GetInstalledPackages(string projectPath, bool includeTransitive, string? targetFramework = null, bool excludePublishFalse = false) { IProject project = _msBuild.GetProject(projectPath); - if (TryGetInstalledPackagesFromAssetsFile(includeTransitive, project, targetFramework, out IEnumerable? dependencies)) + if (TryGetInstalledPackagesFromAssetsFile(includeTransitive, project, targetFramework, excludePublishFalse, out IEnumerable? dependencies)) { return dependencies; } @@ -45,6 +65,7 @@ public IEnumerable GetInstalledPackages(string projectPath, boo private bool TryGetInstalledPackagesFromAssetsFile(bool includeTransitive, IProject project, string? targetFramework, + bool excludePublishFalse, [NotNullWhen(true)] out IEnumerable? installedPackages) { installedPackages = null; @@ -53,33 +74,114 @@ private bool TryGetInstalledPackagesFromAssetsFile(bool includeTransitive, return false; } - var referencedLibraries = new HashSet(); + string? normalizedRequestedTargetFramework = NormalizeTargetFrameworkOrNull(targetFramework); + List selectedTargets = GetSelectedTargets(assetsFile, normalizedRequestedTargetFramework, targetFramework); - if (targetFramework is not null) - { - IEnumerable matchingTargets = assetsFile.Targets!.Where(t => t.TargetFramework.Equals(targetFramework)); - if (!matchingTargets.Any()) - { - throw new ReferencedPackageReaderException($"Target framework {targetFramework} not found."); - } + HashSet referencedLibraries = new HashSet(); + PublishExclusionContext publishExclusionContext = new PublishExclusionContext(normalizedRequestedTargetFramework); - foreach (ILockFileTarget target in matchingTargets) - { - referencedLibraries.AddRange(GetReferencedLibrariesForTarget(includeTransitive, assetsFile, target)); - } - } - else + foreach (ILockFileTarget target in selectedTargets) { - foreach (ILockFileTarget target in assetsFile.Targets!) + HashSet targetReferencedLibraries = [.. GetReferencedLibrariesForTarget(includeTransitive, assetsFile, target)]; + + if (excludePublishFalse) { - referencedLibraries.AddRange(GetReferencedLibrariesForTarget(includeTransitive, assetsFile, target)); + HashSet excludedPackages = GetExcludedPackagesForTarget( + project, + assetsFile, + target, + includeTransitive, + publishExclusionContext); + + targetReferencedLibraries.RemoveWhere(library => excludedPackages.Contains(library.Name)); } + + referencedLibraries.AddRange(targetReferencedLibraries); } installedPackages = referencedLibraries.Select(r => new PackageIdentity(r.Name, r.Version)); return true; } + private List GetSelectedTargets(ILockFile assetsFile, + string? normalizedRequestedTargetFramework, + string? targetFramework) + { + if (normalizedRequestedTargetFramework is null) + { + return assetsFile.Targets.ToList(); + } + + List selectedTargets = assetsFile.Targets + .Where(t => _nuGetFrameworkUtility.IsEquivalent(normalizedRequestedTargetFramework, t.TargetFramework)) + .ToList(); + if (!selectedTargets.Any()) + { + throw new ReferencedPackageReaderException($"Target framework {targetFramework} not found."); + } + + return selectedTargets; + } + + private HashSet GetExcludedPackagesForTarget(IProject project, + ILockFile assetsFile, + ILockFileTarget target, + bool includeTransitive, + PublishExclusionContext context) + { + string targetFrameworkForPublishMetadata = context.NormalizedRequestedTargetFramework ?? _nuGetFrameworkUtility.Normalize(target.TargetFramework); + string targetFrameworkCacheKey = targetFrameworkForPublishMetadata ?? string.Empty; + + // Remove packages with Publish=false metadata from the evaluated PackageReferences for this target only. + if (!context.PublishFalsePackagesByFramework.TryGetValue(targetFrameworkCacheKey, out HashSet? cachedPublishFalsePackages)) + { + cachedPublishFalsePackages = GetPackagesExcludedFromPublish(project, targetFrameworkForPublishMetadata); + context.PublishFalsePackagesByFramework[targetFrameworkCacheKey] = cachedPublishFalsePackages; + } + + HashSet excludedPackages = new HashSet(cachedPublishFalsePackages, StringComparer.OrdinalIgnoreCase); + if (!includeTransitive || !excludedPackages.Any()) + { + return excludedPackages; + } + + if (!context.DirectDependenciesByFramework.TryGetValue(targetFrameworkCacheKey, out HashSet? directDependenciesForFramework)) + { + directDependenciesForFramework = GetDirectDependenciesForTargets(assetsFile, [target]); + context.DirectDependenciesByFramework[targetFrameworkCacheKey] = directDependenciesForFramework; + } + + if (!context.PackageDependenciesByFramework.TryGetValue(targetFrameworkCacheKey, out Dictionary>? packageDependencies)) + { + packageDependencies = _assetsPackageDependencyReader.GetPackageDependenciesForTargetFramework( + assetsFile, + targetFrameworkCacheKey); + context.PackageDependenciesByFramework[targetFrameworkCacheKey] = packageDependencies; + } + + if (packageDependencies.Count == 0) + { + return excludedPackages; + } + + string recursiveExclusionCacheKey = BuildExclusionCacheKey( + targetFrameworkCacheKey, + directDependenciesForFramework, + excludedPackages); + + if (!context.RecursiveExclusionsByInput.TryGetValue(recursiveExclusionCacheKey, out HashSet? recursivelyExcludedPackages)) + { + recursivelyExcludedPackages = GetPackagesExcludedFromPublishDependencyPaths( + packageDependencies, + directDependenciesForFramework, + excludedPackages); + context.RecursiveExclusionsByInput[recursiveExclusionCacheKey] = recursivelyExcludedPackages; + } + + excludedPackages.UnionWith(recursivelyExcludedPackages); + return excludedPackages; + } + private static IEnumerable GetReferencedLibrariesForTarget(bool includeTransitive, ILockFile assetsFile, ILockFileTarget target) @@ -110,14 +212,112 @@ private static ITargetFrameworkInformation GetTargetFrameworkInformation(ILockFi } } - private bool TryLoadAssetsFile(IProject project, [NotNullWhen(true)] out ILockFile? assetsFile) + private static HashSet GetDirectDependenciesForTargets(ILockFile assetsFile, + IEnumerable selectedTargets) { - if (!project.TryGetAssetsPath(out string assetsPath)) + HashSet directDependencies = new HashSet(StringComparer.OrdinalIgnoreCase); + foreach (ILockFileTarget target in selectedTargets) + { + ITargetFrameworkInformation targetFrameworkInformation = GetTargetFrameworkInformation(target, assetsFile); + foreach (ILibraryDependency dependency in targetFrameworkInformation.Dependencies) + { + directDependencies.Add(dependency.Name); + } + } + + return directDependencies; + } + + private static HashSet GetPackagesExcludedFromPublishDependencyPaths( + Dictionary> packageDependencies, + IEnumerable directDependencies, + ISet publishFalseDirectDependencies) + { + HashSet excludedPackages = new HashSet(publishFalseDirectDependencies, StringComparer.OrdinalIgnoreCase); + if (packageDependencies.Count == 0) + { + return excludedPackages; + } + + HashSet publishableRoots = new HashSet( + directDependencies.Where(package => !publishFalseDirectDependencies.Contains(package)), + StringComparer.OrdinalIgnoreCase); + + HashSet reachableFromPublishableRoots = GetReachablePackages(packageDependencies, publishableRoots); + + foreach (string packageName in packageDependencies.Keys) + { + if (!reachableFromPublishableRoots.Contains(packageName)) + { + excludedPackages.Add(packageName); + } + } + + return excludedPackages; + } + + private static string BuildExclusionCacheKey(string targetFramework, + IEnumerable directDependencies, + IEnumerable publishFalseDirectDependencies) + { + string directDependenciesKey = string.Join(";", directDependencies.OrderBy(dependency => dependency, StringComparer.OrdinalIgnoreCase)); + string publishFalseDependenciesKey = string.Join(";", publishFalseDirectDependencies.OrderBy(dependency => dependency, StringComparer.OrdinalIgnoreCase)); + return $"{targetFramework}|{directDependenciesKey}|{publishFalseDependenciesKey}"; + } + + private static HashSet GetReachablePackages(Dictionary> packageDependencies, + IEnumerable roots) + { + HashSet visited = new HashSet(StringComparer.OrdinalIgnoreCase); + Stack stack = new Stack(roots); + + while (stack.Count > 0) + { + string packageName = stack.Pop(); + if (!visited.Add(packageName)) + { + continue; + } + + if (!packageDependencies.TryGetValue(packageName, out HashSet? dependencies)) + { + continue; + } + + foreach (string dependency in dependencies) + { + stack.Push(dependency); + } + } + + return visited; + } + + private string? NormalizeTargetFrameworkOrNull(string? targetFramework) + { + if (targetFramework is null) + { + return null; + } + + if (string.IsNullOrWhiteSpace(targetFramework)) + { + return null; + } + + return _nuGetFrameworkUtility.Normalize(targetFramework); + } + + private bool TryLoadAssetsFile(IProject project, + [NotNullWhen(true)] out ILockFile? assetsFile) + { + if (!project.TryGetAssetsPath(out string projectAssetsPath)) { assetsFile = null; return false; } - assetsFile = _lockFileFactory.GetFromFile(assetsPath); + + assetsFile = _lockFileFactory.GetFromFile(projectAssetsPath); if (assetsFile.TryGetErrors(out string[] errors)) { @@ -132,5 +332,36 @@ private bool TryLoadAssetsFile(IProject project, [NotNullWhen(true)] out ILockFi return true; } + + private static HashSet GetPackagesExcludedFromPublish(IProject project, string? targetFramework) + { + // Publish metadata is not available in project.assets.json, so resolve it via MSBuild items. + IEnumerable packageReferences = targetFramework is null + ? project.GetPackageReferences() + : project.GetPackageReferencesForTarget(targetFramework); + + HashSet excludedPackages = new HashSet(StringComparer.OrdinalIgnoreCase); + foreach (PackageReferenceMetadata packageReference in packageReferences ?? Array.Empty()) + { + if (packageReference.Metadata.TryGetValue("Publish", out string? value) && + string.Equals(value, "false", StringComparison.OrdinalIgnoreCase)) + { + excludedPackages.Add(packageReference.PackageName); + } + } + + return excludedPackages; + } + + private sealed record PublishExclusionContext(string? NormalizedRequestedTargetFramework) + { + public Dictionary> PublishFalsePackagesByFramework { get; } = new Dictionary>(StringComparer.OrdinalIgnoreCase); + + public Dictionary> DirectDependenciesByFramework { get; } = new Dictionary>(StringComparer.OrdinalIgnoreCase); + + public Dictionary>> PackageDependenciesByFramework { get; } = new Dictionary>>(StringComparer.OrdinalIgnoreCase); + + public Dictionary> RecursiveExclusionsByInput { get; } = new Dictionary>(StringComparer.Ordinal); + } } } diff --git a/src/NuGetUtility/Wrapper/MsBuildWrapper/IProject.cs b/src/NuGetUtility/Wrapper/MsBuildWrapper/IProject.cs index 7f3dbdf1..56d2eee3 100644 --- a/src/NuGetUtility/Wrapper/MsBuildWrapper/IProject.cs +++ b/src/NuGetUtility/Wrapper/MsBuildWrapper/IProject.cs @@ -12,5 +12,9 @@ public interface IProject bool TryGetAssetsPath([NotNullWhen(true)] out string assetsFile); IEnumerable GetEvaluatedIncludes(); + + IEnumerable GetPackageReferences(); + + IEnumerable GetPackageReferencesForTarget(string targetFramework); } } diff --git a/src/NuGetUtility/Wrapper/MsBuildWrapper/PackageReferenceMetadata.cs b/src/NuGetUtility/Wrapper/MsBuildWrapper/PackageReferenceMetadata.cs new file mode 100644 index 00000000..801d4733 --- /dev/null +++ b/src/NuGetUtility/Wrapper/MsBuildWrapper/PackageReferenceMetadata.cs @@ -0,0 +1,9 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using System.Collections.Generic; + +namespace NuGetUtility.Wrapper.MsBuildWrapper +{ + public record PackageReferenceMetadata(string PackageName, IReadOnlyDictionary Metadata); +} diff --git a/src/NuGetUtility/Wrapper/MsBuildWrapper/ProjectWrapper.cs b/src/NuGetUtility/Wrapper/MsBuildWrapper/ProjectWrapper.cs index e8be3b50..61a13868 100644 --- a/src/NuGetUtility/Wrapper/MsBuildWrapper/ProjectWrapper.cs +++ b/src/NuGetUtility/Wrapper/MsBuildWrapper/ProjectWrapper.cs @@ -1,7 +1,9 @@ // Licensed to the projects contributors. // The license conditions are provided in the LICENSE file located in the project root +using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; +using System.Linq; using Microsoft.Build.Evaluation; namespace NuGetUtility.Wrapper.MsBuildWrapper @@ -9,6 +11,8 @@ namespace NuGetUtility.Wrapper.MsBuildWrapper internal class ProjectWrapper : IProject { private const string ProjectAssetsFile = "ProjectAssetsFile"; + private const string PackageReferenceItemType = "PackageReference"; + private const string TargetFrameworkProperty = "TargetFramework"; private readonly Project _project; @@ -39,6 +43,47 @@ public IEnumerable GetEvaluatedIncludes() return _project.AllEvaluatedItems.Select(projectItem => projectItem.EvaluatedInclude); } + public IEnumerable GetPackageReferences() + { + // Read evaluated PackageReference items from the current project context. + return _project.GetItems(PackageReferenceItemType) + .Select(item => new PackageReferenceMetadata(item.EvaluatedInclude, CreateMetadata(item))); + } + + public IEnumerable GetPackageReferencesForTarget(string targetFramework) + { + // Re-evaluate the project for a specific target framework to read conditional references. + Dictionary properties = new Dictionary(_project.GlobalProperties, StringComparer.OrdinalIgnoreCase) + { + [TargetFrameworkProperty] = targetFramework + }; + + using ProjectCollection projectCollection = new ProjectCollection(); + Project targetProject = new Project(_project.FullPath, properties, _project.ToolsVersion, projectCollection); + try + { + return targetProject.GetItems(PackageReferenceItemType) + .Select(item => new PackageReferenceMetadata(item.EvaluatedInclude, CreateMetadata(item))) + .ToList(); + } + finally + { + projectCollection.UnloadProject(targetProject); + } + } + public string FullPath => _project.FullPath; + + private static IReadOnlyDictionary CreateMetadata(ProjectItem item) + { + // Normalize metadata names for case-insensitive lookups (e.g., Publish). + Dictionary metadata = new Dictionary(StringComparer.OrdinalIgnoreCase); + foreach (ProjectMetadata projectMetadata in item.Metadata) + { + metadata[projectMetadata.Name] = projectMetadata.EvaluatedValue; + } + + return metadata; + } } } diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/INuGetFrameworkUtility.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/INuGetFrameworkUtility.cs new file mode 100644 index 00000000..7b623b14 --- /dev/null +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/INuGetFrameworkUtility.cs @@ -0,0 +1,12 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +namespace NuGetUtility.Wrapper.NuGetWrapper.Frameworks +{ + public interface INuGetFrameworkUtility + { + bool IsEquivalent(string requestedFramework, INuGetFramework targetFramework); + string Normalize(string targetFramework); + string Normalize(INuGetFramework targetFramework); + } +} diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/NuGetFrameworkUtility.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/NuGetFrameworkUtility.cs new file mode 100644 index 00000000..186fd179 --- /dev/null +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/NuGetFrameworkUtility.cs @@ -0,0 +1,72 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using NuGet.Frameworks; + +namespace NuGetUtility.Wrapper.NuGetWrapper.Frameworks +{ + public class NuGetFrameworkUtility : INuGetFrameworkUtility + { + public bool IsEquivalent(string requestedFramework, INuGetFramework targetFramework) + { + NuGetFramework expectedFramework = ParseFramework(requestedFramework); + NuGetFramework actualFramework = ParseFramework(targetFramework.ToString() ?? string.Empty); + if (!string.Equals(expectedFramework.DotNetFrameworkName, actualFramework.DotNetFrameworkName, StringComparison.OrdinalIgnoreCase)) + { + return false; + } + + if (!expectedFramework.HasPlatform) + { + return true; + } + + if (!actualFramework.HasPlatform) + { + return false; + } + + if (!string.Equals(expectedFramework.Platform, actualFramework.Platform, StringComparison.OrdinalIgnoreCase)) + { + return false; + } + + if (expectedFramework.PlatformVersion == new Version(0, 0, 0, 0)) + { + return true; + } + + return expectedFramework.PlatformVersion == actualFramework.PlatformVersion; + } + + public string Normalize(string targetFramework) + { + NuGetFramework framework = ParseFramework(targetFramework); + return framework.GetShortFolderName(); + } + + public string Normalize(INuGetFramework targetFramework) + { + string framework = targetFramework.ToString() ?? throw new NugetWrapperException("Failed to parse target framework from lock file target."); + return Normalize(framework); + } + + private static NuGetFramework ParseFramework(string framework) + { + string normalizedInput = NormalizeFrameworkText(framework); + return NuGetFramework.Parse(normalizedInput); + } + + private static string NormalizeFrameworkText(string framework) + { + if (string.IsNullOrWhiteSpace(framework)) + { + throw new NugetWrapperException("Failed to parse target framework from lock file target."); + } + + string trimmed = framework.Trim(); + int ridSeparatorIndex = trimmed.IndexOf('/'); + return ridSeparatorIndex >= 0 ? trimmed[..ridSeparatorIndex] : trimmed; + } + } +} diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/WrappedNuGetFramework.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/WrappedNuGetFramework.cs index 240a957a..be4f5872 100644 --- a/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/WrappedNuGetFramework.cs +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/Frameworks/WrappedNuGetFramework.cs @@ -55,6 +55,11 @@ public bool Equals(string targetFramework) return _framework.PlatformVersion == other.PlatformVersion; } + public override string ToString() + { + return _framework.ToString(); + } + public override int GetHashCode() { return _framework.GetHashCode(); diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/Core/IPackageDependency.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/Core/IPackageDependency.cs new file mode 100644 index 00000000..9c02aaa1 --- /dev/null +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/Core/IPackageDependency.cs @@ -0,0 +1,10 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +namespace NuGetUtility.Wrapper.NuGetWrapper.Packaging.Core +{ + public interface IPackageDependency + { + string Id { get; } + } +} diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/Core/WrappedPackageDependency.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/Core/WrappedPackageDependency.cs new file mode 100644 index 00000000..a67c4b73 --- /dev/null +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/Core/WrappedPackageDependency.cs @@ -0,0 +1,17 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using NuGet.Packaging.Core; + +namespace NuGetUtility.Wrapper.NuGetWrapper.Packaging.Core +{ + internal class WrappedPackageDependency : IPackageDependency + { + public WrappedPackageDependency(PackageDependency dependency) + { + Id = dependency.Id; + } + public string Id { get; } + } +} + diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/AssetsPackageDependencyReader.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/AssetsPackageDependencyReader.cs new file mode 100644 index 00000000..648aafd1 --- /dev/null +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/AssetsPackageDependencyReader.cs @@ -0,0 +1,111 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using System.Diagnostics; +using NuGetUtility.Wrapper.NuGetWrapper.Frameworks; + +namespace NuGetUtility.Wrapper.NuGetWrapper.ProjectModel +{ + /// + /// Reads package dependency relationships from a NuGet assets file for a requested target framework. + /// + public class AssetsPackageDependencyReader : IAssetsPackageDependencyReader + { + private const string PackageTypeIdentifier = "package"; + private readonly INuGetFrameworkUtility _nuGetFrameworkUtility; + + /// + /// Initializes a new instance of the class. + /// + /// + /// Utility used to determine semantic equivalence between target framework representations. + /// + /// + /// Thrown when is . + /// + public AssetsPackageDependencyReader(INuGetFrameworkUtility nuGetFrameworkUtility) + { + _nuGetFrameworkUtility = nuGetFrameworkUtility ?? throw new ArgumentNullException(nameof(nuGetFrameworkUtility)); + } + + /// + /// Gets package-to-dependency mappings for libraries in the target framework section of the specified assets file. + /// + /// Path to the project.assets.json file to inspect. + /// Normalized target framework moniker used to select matching targets. + /// + /// A dictionary that maps package IDs to a case-insensitive set of dependency package IDs + /// (Dictionary<string, HashSet<string>>). + /// Returns an empty dictionary when the assets file does not exist or cannot be read. + /// + public Dictionary> GetPackageDependenciesForTargetFramework(ILockFile lockFile, string normalizedTargetFramework) + { + try + { + return BuildDependencyMapFromAssetsFile(lockFile, normalizedTargetFramework); + } + catch (IOException exception) + { + Trace.TraceWarning( + "Failed to analyze transitive Publish=false exclusions due to I/O error. AssetsPath={0}, TargetFramework={1}, Exception={2}", + lockFile.Path, + normalizedTargetFramework, + exception); + return new Dictionary>(StringComparer.OrdinalIgnoreCase); + } + catch (FormatException exception) + { + Trace.TraceWarning( + "Failed to analyze transitive Publish=false exclusions due to invalid assets data. AssetsPath={0}, TargetFramework={1}, Exception={2}", + lockFile.Path, + normalizedTargetFramework, + exception); + return new Dictionary>(StringComparer.OrdinalIgnoreCase); + } + } + + private Dictionary> BuildDependencyMapFromAssetsFile(ILockFile lockFile, string requestedTargetFramework) + { + Dictionary> packageDependencies = new Dictionary>(StringComparer.OrdinalIgnoreCase); + + foreach (ILockFileTarget target in lockFile.Targets) + { + if (!_nuGetFrameworkUtility.IsEquivalent(requestedTargetFramework, target.TargetFramework)) + { + continue; + } + + foreach (ILockFileTargetLibrary library in target.Libraries) + { + if (!string.Equals(library.Type, PackageTypeIdentifier, StringComparison.OrdinalIgnoreCase)) + { + continue; + } + + string packageNameValue = library.Name.Trim(); + if (string.IsNullOrEmpty(packageNameValue)) + { + continue; + } + + if (!packageDependencies.TryGetValue(packageNameValue, out HashSet? dependencies)) + { + dependencies = new HashSet(StringComparer.OrdinalIgnoreCase); + packageDependencies[packageNameValue] = dependencies; + } + + foreach (string dependencyName in library.Dependencies.Select(d => d.Id)) + { + dependencies.Add(dependencyName); + if (!packageDependencies.ContainsKey(dependencyName)) + { + packageDependencies[dependencyName] = new HashSet(StringComparer.OrdinalIgnoreCase); + } + } + } + } + + return packageDependencies; + } + } +} diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/IAssetsPackageDependencyReader.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/IAssetsPackageDependencyReader.cs new file mode 100644 index 00000000..3a3c6825 --- /dev/null +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/IAssetsPackageDependencyReader.cs @@ -0,0 +1,10 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +namespace NuGetUtility.Wrapper.NuGetWrapper.ProjectModel +{ + public interface IAssetsPackageDependencyReader + { + Dictionary> GetPackageDependenciesForTargetFramework(ILockFile lockFile, string normalizedTargetFramework); + } +} diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFile.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFile.cs index 50f582ed..18a03797 100644 --- a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFile.cs +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFile.cs @@ -7,6 +7,7 @@ public interface ILockFile { bool TryGetErrors(out string[] errors); IPackageSpec PackageSpec { get; } - IEnumerable? Targets { get; } + IEnumerable Targets { get; } + string Path { get; } } } diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFileTarget.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFileTarget.cs index 4492d129..0c162678 100644 --- a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFileTarget.cs +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFileTarget.cs @@ -8,6 +8,6 @@ namespace NuGetUtility.Wrapper.NuGetWrapper.ProjectModel public interface ILockFileTarget { INuGetFramework TargetFramework { get; } - IEnumerable Libraries { get; } + IEnumerable Libraries { get; } } } diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFileTargetLibrary.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFileTargetLibrary.cs new file mode 100644 index 00000000..76c1f016 --- /dev/null +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/ILockFileTargetLibrary.cs @@ -0,0 +1,13 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using NuGetUtility.Wrapper.NuGetWrapper.Packaging.Core; +using NuGetUtility.Wrapper.NuGetWrapper.Versioning; + +namespace NuGetUtility.Wrapper.NuGetWrapper.ProjectModel +{ + public interface ILockFileTargetLibrary : ILockFileLibrary + { + IReadOnlyList Dependencies { get; } + } +} diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFile.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFile.cs index b1d06559..6e70795c 100644 --- a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFile.cs +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFile.cs @@ -17,7 +17,8 @@ public WrappedLockFile(LockFile file) public IEnumerable Libraries => _file.Libraries.Select(l => new WrappedLockFileLibrary(l)); public IPackageSpec PackageSpec => new WrappedPackageSpec(_file.PackageSpec); - public IEnumerable? Targets => _file.Targets?.Select(t => new WrappedLockFileTarget(t)); + public IEnumerable Targets => _file.Targets.Select(t => new WrappedLockFileTarget(t)); + public string Path => _file.Path; public bool TryGetErrors(out string[] errors) { diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTarget.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTarget.cs index 02544c7f..b42def18 100644 --- a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTarget.cs +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTarget.cs @@ -17,6 +17,6 @@ public WrappedLockFileTarget(LockFileTarget target) public INuGetFramework TargetFramework => new WrappedNuGetFramework(_target.TargetFramework); - public IEnumerable Libraries => _target.Libraries.Select(l => new WrappedLockFileTargetLibrary(l)); + public IEnumerable Libraries => _target.Libraries.Select(l => new WrappedLockFileTargetLibrary(l)); } } diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTargetLibrary.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTargetLibrary.cs index 65e06ce2..a1043364 100644 --- a/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTargetLibrary.cs +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/ProjectModel/WrappedLockFileTargetLibrary.cs @@ -2,17 +2,19 @@ // The license conditions are provided in the LICENSE file located in the project root using NuGet.ProjectModel; +using NuGetUtility.Wrapper.NuGetWrapper.Packaging.Core; using NuGetUtility.Wrapper.NuGetWrapper.Versioning; namespace NuGetUtility.Wrapper.NuGetWrapper.ProjectModel { - internal class WrappedLockFileTargetLibrary : ILockFileLibrary + internal class WrappedLockFileTargetLibrary : ILockFileTargetLibrary { public WrappedLockFileTargetLibrary(LockFileTargetLibrary library) { Type = library.Type ?? throw new ArgumentNullException(nameof(library), $"The field {nameof(library.Type)} on {nameof(library)} must not be null"); Name = library.Name ?? throw new ArgumentNullException(nameof(library), $"The field {nameof(library.Name)} on {nameof(library)} must not be null"); Version = new WrappedNuGetVersion(library.Version ?? throw new ArgumentNullException(nameof(library), $"The field {nameof(library.Version)} on {nameof(library)} must not be null")); + Dependencies = library.Dependencies.Select(d => new WrappedPackageDependency(d)).ToArray(); } public string Type { get; } @@ -20,5 +22,6 @@ public WrappedLockFileTargetLibrary(LockFileTargetLibrary library) public string Name { get; } public INuGetVersion Version { get; } + public IReadOnlyList Dependencies { get; } } } diff --git a/tests/FileLicenseMatcher.Test/FileLicenseMatcher.Test.csproj b/tests/FileLicenseMatcher.Test/FileLicenseMatcher.Test.csproj index 9ac4703c..5fbb8c2a 100644 --- a/tests/FileLicenseMatcher.Test/FileLicenseMatcher.Test.csproj +++ b/tests/FileLicenseMatcher.Test/FileLicenseMatcher.Test.csproj @@ -16,7 +16,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/NuGetLicense.Test/LicenseValidationOrchestratorTest.cs b/tests/NuGetLicense.Test/LicenseValidationOrchestratorTest.cs index 2754b447..41ac7338 100644 --- a/tests/NuGetLicense.Test/LicenseValidationOrchestratorTest.cs +++ b/tests/NuGetLicense.Test/LicenseValidationOrchestratorTest.cs @@ -154,7 +154,7 @@ public async Task ValidateAsync_WithExceptionInOutputFormatter_ReturnsMinusOne() LicenseOutput.IOutputFormatter throwingFormatter = Substitute.For(); throwingFormatter.Write(Arg.Any(), Arg.Any>()) - .Returns(_ => throw new InvalidOperationException("Test exception")); + .Returns(_ => throw new InvalidOperationException("Test exception")); _optionsParser.GetOutputFormatter(OutputType.Table, false, false).Returns(throwingFormatter); // Act diff --git a/tests/NuGetLicense.Test/Output/Csv/CsvOutputFormatterSpecialCases.cs b/tests/NuGetLicense.Test/Output/Csv/CsvOutputFormatterSpecialCases.cs new file mode 100644 index 00000000..372a54d0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/Csv/CsvOutputFormatterSpecialCases.cs @@ -0,0 +1,189 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using System.Text; +using NuGetLicense.LicenseValidator; +using NuGetLicense.Output.Csv; + +using HelperNuGetVersion = NuGetLicense.Test.Output.Helper.NuGetVersion; + +namespace NuGetLicense.Test.Output.Csv +{ + [TestFixture] + public class CsvOutputFormatterSpecialCases + { + [Test] + public async Task Should_EscapeCsv_WithSpecialCharacters_Correctly() + { + var licenses = new List + { + new( + PackageId: "PackageId,With,Commas", + PackageVersion: new HelperNuGetVersion("1.0.0"), + PackageProjectUrl: null, + License: "MIT License", + LicenseUrl: null, + "Copyright \"2024\"", + "Author1, Author2", + Description: null, + Summary: null, + LicenseInformationOrigin.Expression, + ValidationErrors: new List() + ), + new( + PackageId: "PackageIdWith\nNewline", + PackageVersion: new HelperNuGetVersion("2.0.0"), + PackageProjectUrl: null, + License: "Apache-2.0", + LicenseUrl: null, + Copyright: null, + Authors: null, + Description: null, + Summary: null, + LicenseInformationOrigin.Expression, + ValidationErrors: new List() + ) + }; + + string expected = + "Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context\r\n" + + "\"PackageId,With,Commas\",1.0.0,Expression,MIT License,,\"Copyright \"\"2024\"\"\",\"Author1, Author2\",,\r\n" + + "\"PackageIdWith\nNewline\",2.0.0,Expression,Apache-2.0,,,,,\r\n"; + + var csvFormatter = new CsvOutputFormatter(false, false); + using var memoryStream = new MemoryStream(); + + await csvFormatter.Write(memoryStream, licenses); + + string result = Encoding.UTF8.GetString(memoryStream.ToArray()); + + Assert.That(result, Is.EqualTo(expected)); + } + + [Test] + public async Task Should_EscapeCsv_WithErrors_Correctly() + { + var licenses = new List + { + new( + PackageId: "TestPackage", + PackageVersion: new HelperNuGetVersion("1.0.0"), + PackageProjectUrl: null, + License: "MIT", + LicenseUrl: null, + Copyright: null, + Authors: null, + Description: null, + Summary: null, + LicenseInformationOrigin.Expression, + ValidationErrors: new List + { + new("License not allowed", "MIT is not in the allowed list"), + new("Missing copyright", "No copyright information") + } + ) + }; + + string expected = + "Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context\r\n" + + "TestPackage,1.0.0,Expression,MIT,,,,,License not allowed (MIT is not in the allowed list); Missing copyright (No copyright information)\r\n"; + + var csvFormatter = new CsvOutputFormatter(false, false); + using var memoryStream = new MemoryStream(); + + await csvFormatter.Write(memoryStream, licenses); + + string result = Encoding.UTF8.GetString(memoryStream.ToArray()); + + Assert.That(result, Is.EqualTo(expected)); + } + + [Test] + public async Task Should_EscapeCsv_WithSkipIgnoredFilter_Correctly() + { + var licenses = new List + { + new( + PackageId: "NormalPackage", + PackageVersion: new HelperNuGetVersion("1.0.0"), + PackageProjectUrl: null, + License: "MIT", + LicenseUrl: null, + Copyright: null, + Authors: null, + Description: null, + Summary: null, + LicenseInformationOrigin.Expression, + ValidationErrors: new List() + ), + new( + PackageId: "IgnoredPackage", + PackageVersion: new HelperNuGetVersion("2.0.0"), + PackageProjectUrl: null, + License: "MIT", + LicenseUrl: null, + Copyright: null, + Authors: null, + Description: null, + Summary: null, + LicenseInformationOrigin.Ignored, + ValidationErrors: new List() + ) + }; + + string expected = + "Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context\r\n" + + "NormalPackage,1.0.0,Expression,MIT,,,,,\r\n"; + + var csvFormatter = new CsvOutputFormatter(false, skipIgnoredPackages: true); + using var memoryStream = new MemoryStream(); + + await csvFormatter.Write(memoryStream, licenses); + + string result = Encoding.UTF8.GetString(memoryStream.ToArray()); + + Assert.That(result, Is.EqualTo(expected)); + } + + [Test] + public async Task Should_EscapeCsvCorrectly_IfPrintErrorsOnly() + { + var licenses = new List + { + new( + PackageId: "Package1", + PackageVersion: new HelperNuGetVersion("1.0.0"), + PackageProjectUrl: null, + License: "MIT", + LicenseUrl: null, + Copyright: null, + Authors: null, + Description: null, + Summary: null, + LicenseInformationOrigin.Expression + ), + new( + PackageId: "Package2", + PackageVersion: new HelperNuGetVersion("2.0.0"), + PackageProjectUrl: null, + License: "MIT", + LicenseUrl: null, + Copyright: null, + Authors: null, + Description: null, + Summary: null, + LicenseInformationOrigin.Expression + ) + }; + + var csvFormatter = new CsvOutputFormatter(printErrorsOnly: true, false); + using var memoryStream = new MemoryStream(); + + await csvFormatter.Write(memoryStream, licenses); + + string[] result = Encoding.UTF8.GetString(memoryStream.ToArray()).Split(['\n'], StringSplitOptions.RemoveEmptyEntries); + + Assert.That(result.Length, Is.EqualTo(1)); + } + } +} diff --git a/tests/NuGetLicense.Test/Output/Csv/CsvOutputFormatterTests.cs b/tests/NuGetLicense.Test/Output/Csv/CsvOutputFormatterTests.cs index 2533475f..107bd8be 100644 --- a/tests/NuGetLicense.Test/Output/Csv/CsvOutputFormatterTests.cs +++ b/tests/NuGetLicense.Test/Output/Csv/CsvOutputFormatterTests.cs @@ -1,190 +1,55 @@ // Licensed to the projects contributors. // The license conditions are provided in the LICENSE file located in the project root -using System.Text; -using NuGetLicense.LicenseValidator; using NuGetLicense.Output; using NuGetLicense.Output.Csv; namespace NuGetLicense.Test.Output.Csv { - [TestFixture] + [TestFixture(true, true, true, true, true)] + [TestFixture(true, true, true, true, false)] + [TestFixture(true, true, true, false, true)] + [TestFixture(true, true, true, false, false)] + [TestFixture(true, true, false, true, true)] + [TestFixture(true, true, false, true, false)] + [TestFixture(true, true, false, false, true)] + [TestFixture(true, true, false, false, false)] + [TestFixture(true, false, true, true, true)] + [TestFixture(true, false, true, true, false)] + [TestFixture(true, false, true, false, true)] + [TestFixture(true, false, true, false, false)] + [TestFixture(true, false, false, true, true)] + [TestFixture(true, false, false, true, false)] + [TestFixture(true, false, false, false, true)] + [TestFixture(true, false, false, false, false)] + [TestFixture(false, true, true, true, true)] + [TestFixture(false, true, true, true, false)] + [TestFixture(false, true, true, false, true)] + [TestFixture(false, true, true, false, false)] + [TestFixture(false, true, false, true, true)] + [TestFixture(false, true, false, true, false)] + [TestFixture(false, true, false, false, true)] + [TestFixture(false, true, false, false, false)] + [TestFixture(false, false, true, true, true)] + [TestFixture(false, false, true, true, false)] + [TestFixture(false, false, true, false, true)] + [TestFixture(false, false, true, false, false)] + [TestFixture(false, false, false, true, true)] + [TestFixture(false, false, false, true, false)] + [TestFixture(false, false, false, false, true)] + [TestFixture(false, false, false, false, false)] public class CsvOutputFormatterTests : TestBase { - protected override IOutputFormatter CreateUut() => new CsvOutputFormatter(); - - [Test] - public async Task Should_EscapeCsv_WithSpecialCharacters_Correctly() + private readonly bool _omitValidLicensesOnError; + private readonly bool _skipIgnoredPackages; + public CsvOutputFormatterTests(bool omitValidLicensesOnError, bool skipIgnoredPackages, bool includeCopyright, bool includeAuthors, bool includeLicenseUrl) : base(includeCopyright, includeAuthors, includeLicenseUrl) { - var licenses = new List - { - new( - PackageId: "PackageId,With,Commas", - PackageVersion: new NuGetVersion("1.0.0"), - PackageProjectUrl: null, - License: "MIT License", - LicenseUrl: null, - "Copyright \"2024\"", - "Author1, Author2", - Description: null, - Summary: null, - LicenseInformationOrigin.Expression, - ValidationErrors: new List() - ), - new( - PackageId: "PackageIdWith\nNewline", - PackageVersion: new NuGetVersion("2.0.0"), - PackageProjectUrl: null, - License: "Apache-2.0", - LicenseUrl: null, - Copyright: null, - Authors: null, - Description: null, - Summary: null, - LicenseInformationOrigin.Expression, - ValidationErrors: new List() - ) - }; - - var expected = - "Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context\r\n" + - "\"PackageId,With,Commas\",1.0.0,Expression,MIT License,,\"Copyright \"\"2024\"\"\",\"Author1, Author2\",,\r\n" + - "\"PackageIdWith\nNewline\",2.0.0,Expression,Apache-2.0,,,,,\r\n"; - - var csvFormatter = new CsvOutputFormatter(); - using var memoryStream = new MemoryStream(); - - await csvFormatter.Write(memoryStream, licenses); - - var result = Encoding.UTF8.GetString(memoryStream.ToArray()); - - Assert.That(result, Is.EqualTo(expected)); + _omitValidLicensesOnError = omitValidLicensesOnError; + _skipIgnoredPackages = skipIgnoredPackages; } - - [Test] - public async Task Should_EscapeCsv_WithErrors_Correctly() + protected override IOutputFormatter CreateUut() { - var licenses = new List - { - new( - PackageId: "TestPackage", - PackageVersion: new NuGetVersion("1.0.0"), - PackageProjectUrl: null, - License: "MIT", - LicenseUrl: null, - Copyright: null, - Authors: null, - Description: null, - Summary: null, - LicenseInformationOrigin.Expression, - ValidationErrors: new List - { - new("License not allowed", "MIT is not in the allowed list"), - new("Missing copyright", "No copyright information") - } - ) - }; - - var expected = - "Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context\r\n" + - "TestPackage,1.0.0,Expression,MIT,,,,,License not allowed (MIT is not in the allowed list); Missing copyright (No copyright information)\r\n"; - - var csvFormatter = new CsvOutputFormatter(); - using var memoryStream = new MemoryStream(); - - await csvFormatter.Write(memoryStream, licenses); - - var result = Encoding.UTF8.GetString(memoryStream.ToArray()); - - Assert.That(result, Is.EqualTo(expected)); - } - - [Test] - public async Task Should_EscapeCsv_WithSkipIgnoredFilter_Correctly() - { - var licenses = new List - { - new( - PackageId: "NormalPackage", - PackageVersion: new NuGetVersion("1.0.0"), - PackageProjectUrl: null, - License: "MIT", - LicenseUrl: null, - Copyright: null, - Authors: null, - Description: null, - Summary: null, - LicenseInformationOrigin.Expression, - ValidationErrors: new List() - ), - new( - PackageId: "IgnoredPackage", - PackageVersion: new NuGetVersion("2.0.0"), - PackageProjectUrl: null, - License: "MIT", - LicenseUrl: null, - Copyright: null, - Authors: null, - Description: null, - Summary: null, - LicenseInformationOrigin.Ignored, - ValidationErrors: new List() - ) - }; - - var expected = - "Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context\r\n" + - "NormalPackage,1.0.0,Expression,MIT,,,,,\r\n"; - - var csvFormatter = new CsvOutputFormatter(skipIgnoredPackages: true); - using var memoryStream = new MemoryStream(); - - await csvFormatter.Write(memoryStream, licenses); - - var result = Encoding.UTF8.GetString(memoryStream.ToArray()); - - Assert.That(result, Is.EqualTo(expected)); - } - - [Test] - public async Task Should_EscapeCsvCorrectly_IfPrintErrorsOnly() - { - var licenses = new List - { - new( - PackageId: "Package1", - PackageVersion: new NuGetVersion("1.0.0"), - PackageProjectUrl: null, - License: "MIT", - LicenseUrl: null, - Copyright: null, - Authors: null, - Description: null, - Summary: null, - LicenseInformationOrigin.Expression - ), - new( - PackageId: "Package2", - PackageVersion: new NuGetVersion("2.0.0"), - PackageProjectUrl: null, - License: "MIT", - LicenseUrl: null, - Copyright: null, - Authors: null, - Description: null, - Summary: null, - LicenseInformationOrigin.Expression - ) - }; - - var csvFormatter = new CsvOutputFormatter(printErrorsOnly: true); - using var memoryStream = new MemoryStream(); - - await csvFormatter.Write(memoryStream, licenses); - - var result = Encoding.UTF8.GetString(memoryStream.ToArray()).Split(['\n'], StringSplitOptions.RemoveEmptyEntries); - - Assert.That(result.Length, Is.EqualTo(1)); + return new CsvOutputFormatter(_omitValidLicensesOnError, _skipIgnoredPackages); } } } diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_000702dd06d13d73.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_000702dd06d13d73.verified.txt new file mode 100644 index 00000000..a70c6fca --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_000702dd06d13d73.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Legacy Response Specialist,0.9.4,Ignored,,We need to generate the online HDD matrix!,,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Interactions Officer,9.4.9,Url,,,,,, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +International Data Associate,8.9.3,Ignored,,,,,, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +National Intranet Technician,8.0.0,Url,,,,,, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",You can't override the capacitor without navigating the cross-platform FTP capacitor!,,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Human Group Engineer,9.8.9,Overwrite,,,,,, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Investor Identity Manager,7.9.5,Ignored,,You can't index the microchip without backing up the back-end CSS microchip!,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Product Branding Director,1.2.7,Ignored,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0054962e5cfcd6b0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0054962e5cfcd6b0.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0054962e5cfcd6b0.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_008e4b6ae444f6bc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_008e4b6ae444f6bc.verified.txt new file mode 100644 index 00000000..90cf48c4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_008e4b6ae444f6bc.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_01486fedb2e3b672.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_01486fedb2e3b672.verified.txt new file mode 100644 index 00000000..93127501 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_01486fedb2e3b672.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_014c2ee9f0b210f7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_014c2ee9f0b210f7.verified.txt new file mode 100644 index 00000000..f03f69e4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_014c2ee9f0b210f7.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_025af9b1bdaaf443.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_025af9b1bdaaf443.verified.txt new file mode 100644 index 00000000..c613d1f9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_025af9b1bdaaf443.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02b446082748e5c9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02b446082748e5c9.verified.txt new file mode 100644 index 00000000..61fb6346 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02b446082748e5c9.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02dba25eeb462b7f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02dba25eeb462b7f.verified.txt new file mode 100644 index 00000000..01e1c6eb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02dba25eeb462b7f.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04968832d0f0d79b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04968832d0f0d79b.verified.txt new file mode 100644 index 00000000..c699dcb7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04968832d0f0d79b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04fa664957d11360.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04fa664957d11360.verified.txt new file mode 100644 index 00000000..fd626a5a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04fa664957d11360.verified.txt @@ -0,0 +1,86 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Human Implementation Producer,0.9.1,Url,,,,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Internal Marketing Executive,2.0.0,Url,,,,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +Principal Intranet Manager,3.8.8,File,,,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05000572b30e85b6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05000572b30e85b6.verified.txt new file mode 100644 index 00000000..ba494ef8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05000572b30e85b6.verified.txt @@ -0,0 +1,23 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0522f8c6bc46ee4d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0522f8c6bc46ee4d.verified.txt new file mode 100644 index 00000000..c77f7503 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0522f8c6bc46ee4d.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05bdbb0f2edf66a9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05bdbb0f2edf66a9.verified.txt new file mode 100644 index 00000000..7ad42943 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05bdbb0f2edf66a9.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05e6cf64f7e7658f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05e6cf64f7e7658f.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05e6cf64f7e7658f.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05f62e40f779223e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05f62e40f779223e.verified.txt new file mode 100644 index 00000000..93127501 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05f62e40f779223e.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_06496a540b635544.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_06496a540b635544.verified.txt new file mode 100644 index 00000000..87aa40a1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_06496a540b635544.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0698070d47130694.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0698070d47130694.verified.txt new file mode 100644 index 00000000..d27239fb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0698070d47130694.verified.txt @@ -0,0 +1,99 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Internal Marketing Executive,2.0.0,Url,,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Principal Intranet Manager,3.8.8,File,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Human Implementation Producer,0.9.1,Url,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Group Consultant,5.8.4,File,,,,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Marketing Officer,7.2.8,Unknown,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d1b05e10649ce0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d1b05e10649ce0.verified.txt new file mode 100644 index 00000000..2cc98c83 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d1b05e10649ce0.verified.txt @@ -0,0 +1,15 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d4617a7cffd79a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d4617a7cffd79a.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d4617a7cffd79a.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_085aa1e0b1c617c2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_085aa1e0b1c617c2.verified.txt new file mode 100644 index 00000000..356d6663 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_085aa1e0b1c617c2.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08a55f32e2239790.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08a55f32e2239790.verified.txt new file mode 100644 index 00000000..926924ee --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08a55f32e2239790.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08bcd06bb455211e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08bcd06bb455211e.verified.txt new file mode 100644 index 00000000..1cf87304 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08bcd06bb455211e.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08f1c8243170b4f1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08f1c8243170b4f1.verified.txt new file mode 100644 index 00000000..1ba7ab95 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08f1c8243170b4f1.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0abe8fb1231c9559.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0abe8fb1231c9559.verified.txt new file mode 100644 index 00000000..d9b0871e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0abe8fb1231c9559.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b2dfba58a4a5fb5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b2dfba58a4a5fb5.verified.txt new file mode 100644 index 00000000..3524adde --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b2dfba58a4a5fb5.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b33015e996603cc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b33015e996603cc.verified.txt new file mode 100644 index 00000000..88b80a40 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b33015e996603cc.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b5c0b91a47b5b95.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b5c0b91a47b5b95.verified.txt new file mode 100644 index 00000000..59db8f5f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b5c0b91a47b5b95.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,,https://anjali.name, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Internal Marketing Executive,2.0.0,Url,,,,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,http://helen.name, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Regional Operations Analyst,7.0.8,Ignored,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,,http://rene.com, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +Principal Intranet Manager,3.8.8,File,,,,,, +Chief Response Strategist,8.0.4,Ignored,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,,, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0bf04fae58fd50cd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0bf04fae58fd50cd.verified.txt new file mode 100644 index 00000000..c613d1f9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0bf04fae58fd50cd.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c1bee925af844e8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c1bee925af844e8.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c1bee925af844e8.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c59c88f2f75b209.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c59c88f2f75b209.verified.txt new file mode 100644 index 00000000..e281db37 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c59c88f2f75b209.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Global Communications Designer,0.6.3,File,,,,,, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c83788d92f3cdc3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c83788d92f3cdc3.verified.txt new file mode 100644 index 00000000..bda5d3c6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c83788d92f3cdc3.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0dad14d6b00093bd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0dad14d6b00093bd.verified.txt new file mode 100644 index 00000000..ad197817 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0dad14d6b00093bd.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0ded90be3d20563e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0ded90be3d20563e.verified.txt new file mode 100644 index 00000000..a15d8330 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0ded90be3d20563e.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Chief Directives Manager,2.4.3,File,,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Chief Identity Designer,9.2.3,Expression,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e1a5997232a2b5f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e1a5997232a2b5f.verified.txt new file mode 100644 index 00000000..98105ba3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e1a5997232a2b5f.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e90074ea5761bf1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e90074ea5761bf1.verified.txt new file mode 100644 index 00000000..91279557 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e90074ea5761bf1.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e950a54f89d8462.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e950a54f89d8462.verified.txt new file mode 100644 index 00000000..2792c99f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e950a54f89d8462.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f6bfda5c00e6917.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f6bfda5c00e6917.verified.txt new file mode 100644 index 00000000..0ee913d2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f6bfda5c00e6917.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f8d9475d3c1c7c7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f8d9475d3c1c7c7.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f8d9475d3c1c7c7.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10027f440098da1a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10027f440098da1a.verified.txt new file mode 100644 index 00000000..bcf06a69 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10027f440098da1a.verified.txt @@ -0,0 +1,81 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Global Communications Designer,0.6.3,File,,,,,, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106104bd5e989566.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106104bd5e989566.verified.txt new file mode 100644 index 00000000..7c44f9d3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106104bd5e989566.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106ef1d27a47cb6a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106ef1d27a47cb6a.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106ef1d27a47cb6a.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10df60db074a2f18.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10df60db074a2f18.verified.txt new file mode 100644 index 00000000..d59572c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10df60db074a2f18.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1170f00308aff914.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1170f00308aff914.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1170f00308aff914.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_123a1accc2ecdda4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_123a1accc2ecdda4.verified.txt new file mode 100644 index 00000000..c6ac31d1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_123a1accc2ecdda4.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_12b8f05434b6cdd1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_12b8f05434b6cdd1.verified.txt new file mode 100644 index 00000000..89503218 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_12b8f05434b6cdd1.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_13424e688da59b94.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_13424e688da59b94.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_13424e688da59b94.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_14bc4a4c40601086.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_14bc4a4c40601086.verified.txt new file mode 100644 index 00000000..3693d10d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_14bc4a4c40601086.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_155bcc540303897b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_155bcc540303897b.verified.txt new file mode 100644 index 00000000..ed7b300a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_155bcc540303897b.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_158f69f6816fb19d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_158f69f6816fb19d.verified.txt new file mode 100644 index 00000000..58951172 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_158f69f6816fb19d.verified.txt @@ -0,0 +1,88 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Intranet Technician,8.0.0,Url,,,,,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15cc676287914233.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15cc676287914233.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15cc676287914233.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15f22b39f94f704d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15f22b39f94f704d.verified.txt new file mode 100644 index 00000000..3524adde --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15f22b39f94f704d.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_162698c241fc3cc7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_162698c241fc3cc7.verified.txt new file mode 100644 index 00000000..c01d576c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_162698c241fc3cc7.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16d538c973af666b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16d538c973af666b.verified.txt new file mode 100644 index 00000000..55bdc6bf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16d538c973af666b.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16ffd0df95f0b73a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16ffd0df95f0b73a.verified.txt new file mode 100644 index 00000000..d79e36c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16ffd0df95f0b73a.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_17915c99f53bdfcb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_17915c99f53bdfcb.verified.txt new file mode 100644 index 00000000..5b2bc832 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_17915c99f53bdfcb.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Human Implementation Producer,0.9.1,Url,,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18183a196e8ae892.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18183a196e8ae892.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18183a196e8ae892.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18d1081062e66ff2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18d1081062e66ff2.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18d1081062e66ff2.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1946983a9c85ebb4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1946983a9c85ebb4.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1946983a9c85ebb4.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_19ec0bb266cca983.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_19ec0bb266cca983.verified.txt new file mode 100644 index 00000000..230e27aa --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_19ec0bb266cca983.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1a243414e0136156.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1a243414e0136156.verified.txt new file mode 100644 index 00000000..035f033c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1a243414e0136156.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b3e3a42ed532adb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b3e3a42ed532adb.verified.txt new file mode 100644 index 00000000..36ecfd00 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b3e3a42ed532adb.verified.txt @@ -0,0 +1,36 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +Chief Directives Manager,2.4.3,File,,,,,, +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b471e10f7dacc5a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b471e10f7dacc5a.verified.txt new file mode 100644 index 00000000..2dce3c30 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b471e10f7dacc5a.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b50c6b233ffe121.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b50c6b233ffe121.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b50c6b233ffe121.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b616bb830694be0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b616bb830694be0.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b616bb830694be0.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1de87b4ecf120c82.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1de87b4ecf120c82.verified.txt new file mode 100644 index 00000000..ad197817 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1de87b4ecf120c82.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1e8254fbea124dad.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1e8254fbea124dad.verified.txt new file mode 100644 index 00000000..ed7b300a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1e8254fbea124dad.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f1e387dbb296fc1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f1e387dbb296fc1.verified.txt new file mode 100644 index 00000000..86d8db6e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f1e387dbb296fc1.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f520d81e676a542.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f520d81e676a542.verified.txt new file mode 100644 index 00000000..d19df46b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f520d81e676a542.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1fa7f2477167ab52.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1fa7f2477167ab52.verified.txt new file mode 100644 index 00000000..1b98d94a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1fa7f2477167ab52.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Chief Identity Designer,9.2.3,Expression,,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_202d89200e9e831f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_202d89200e9e831f.verified.txt new file mode 100644 index 00000000..ebe4d971 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_202d89200e9e831f.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_208ef2f0e630a6cb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_208ef2f0e630a6cb.verified.txt new file mode 100644 index 00000000..b97f56e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_208ef2f0e630a6cb.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20c5429a5cbe4abf.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20c5429a5cbe4abf.verified.txt new file mode 100644 index 00000000..7ee8a711 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20c5429a5cbe4abf.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20d1adeed92cd850.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20d1adeed92cd850.verified.txt new file mode 100644 index 00000000..33f842df --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20d1adeed92cd850.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20da0293189470f4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20da0293189470f4.verified.txt new file mode 100644 index 00000000..f03f69e4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20da0293189470f4.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_234fb93889b38036.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_234fb93889b38036.verified.txt new file mode 100644 index 00000000..eb8c9fc0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_234fb93889b38036.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_235571e42ac05378.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_235571e42ac05378.verified.txt new file mode 100644 index 00000000..58a3fae5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_235571e42ac05378.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_243121d44615c969.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_243121d44615c969.verified.txt new file mode 100644 index 00000000..51a8bd23 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_243121d44615c969.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_24ba787b3b42fbde.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_24ba787b3b42fbde.verified.txt new file mode 100644 index 00000000..1e6e8dcc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_24ba787b3b42fbde.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25034e2471081c8b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25034e2471081c8b.verified.txt new file mode 100644 index 00000000..8e1f45e0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25034e2471081c8b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_256ead8f3c785a1a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_256ead8f3c785a1a.verified.txt new file mode 100644 index 00000000..3186295b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_256ead8f3c785a1a.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25863dff98b92489.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25863dff98b92489.verified.txt new file mode 100644 index 00000000..3558f6f3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25863dff98b92489.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2655bb7e1882889f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2655bb7e1882889f.verified.txt new file mode 100644 index 00000000..49729411 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2655bb7e1882889f.verified.txt @@ -0,0 +1,33 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Future Creative Analyst,0.1.8,Unknown,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_268d57ecf5e79e38.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_268d57ecf5e79e38.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_268d57ecf5e79e38.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_276a3f016267976e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_276a3f016267976e.verified.txt new file mode 100644 index 00000000..cccdd90b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_276a3f016267976e.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2796b52c60324014.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2796b52c60324014.verified.txt new file mode 100644 index 00000000..43da3eae --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2796b52c60324014.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c4461ba928642a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c4461ba928642a.verified.txt new file mode 100644 index 00000000..2548e81b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c4461ba928642a.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c7b882d9ef5051.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c7b882d9ef5051.verified.txt new file mode 100644 index 00000000..edfbf4f6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c7b882d9ef5051.verified.txt @@ -0,0 +1,15 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2954c6ee5581f8e0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2954c6ee5581f8e0.verified.txt new file mode 100644 index 00000000..4d15d751 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2954c6ee5581f8e0.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Global Usability Officer,2.2.4,File,,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_29bdfc85aaf5c73e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_29bdfc85aaf5c73e.verified.txt new file mode 100644 index 00000000..922d102e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_29bdfc85aaf5c73e.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a24ee7efe69d94f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a24ee7efe69d94f.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a24ee7efe69d94f.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a2f1b3b8764d65c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a2f1b3b8764d65c.verified.txt new file mode 100644 index 00000000..dbb9599c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a2f1b3b8764d65c.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a530761f47d886f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a530761f47d886f.verified.txt new file mode 100644 index 00000000..60d5974f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a530761f47d886f.verified.txt @@ -0,0 +1,99 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Future Security Executive,1.1.3,Expression,,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Product Group Assistant,3.3.8,Expression,,,,,, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Direct Factors Architect,9.0.4,File,,,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a7684c73f6b9fbc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a7684c73f6b9fbc.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a7684c73f6b9fbc.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2acb69d03ab3d0c5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2acb69d03ab3d0c5.verified.txt new file mode 100644 index 00000000..a8605b15 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2acb69d03ab3d0c5.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ad05730af414b9a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ad05730af414b9a.verified.txt new file mode 100644 index 00000000..85b5c562 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ad05730af414b9a.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ae7eb15679a2201.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ae7eb15679a2201.verified.txt new file mode 100644 index 00000000..acf5e3c0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ae7eb15679a2201.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b4886b08fcd36ed.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b4886b08fcd36ed.verified.txt new file mode 100644 index 00000000..6743a794 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b4886b08fcd36ed.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Product Web Strategist,3.5.8,Ignored,,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,https://anjali.name, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,,We need to input the neural SQL program!,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Regional Operations Analyst,7.0.8,Ignored,,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,http://rene.com, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Marketing Officer,6.2.8,Url,,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,,"If we copy the array, we can get to the SAS array through the neural SAS array!",,http://helen.name, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Principal Intranet Manager,3.8.8,File,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Chief Response Strategist,8.0.4,Ignored,,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b6d1c8c430d424b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b6d1c8c430d424b.verified.txt new file mode 100644 index 00000000..8e1f45e0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b6d1c8c430d424b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2c606c897158bddc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2c606c897158bddc.verified.txt new file mode 100644 index 00000000..d9b0871e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2c606c897158bddc.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2caf5be6f8c41ae3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2caf5be6f8c41ae3.verified.txt new file mode 100644 index 00000000..66c6eae2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2caf5be6f8c41ae3.verified.txt @@ -0,0 +1,91 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +National Data Director,0.9.6,Unknown,,,,,, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Legacy Web Administrator,6.2.8,Expression,,,,,, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Senior Division Liaison,7.1.3,Unknown,,,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +District Accounts Specialist,3.9.2,Unknown,,,,,, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +National Intranet Technician,8.0.0,Overwrite,,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +National Creative Facilitator,0.0.1,Url,,,,,, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +Principal Identity Administrator,0.5.2,File,,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Dynamic Integration Architect,1.6.3,File,,,,,, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Chief Identity Designer,9.2.3,Expression,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Chief Directives Manager,2.4.3,File,,,,,, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Dynamic Tactics Developer,7.5.4,File,,,,,, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Senior Marketing Architect,1.7.9,File,,,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cb8182f10ec658f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cb8182f10ec658f.verified.txt new file mode 100644 index 00000000..bac61c05 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cb8182f10ec658f.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cf0bc20185f9fa2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cf0bc20185f9fa2.verified.txt new file mode 100644 index 00000000..78167d5b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cf0bc20185f9fa2.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2d8284aab7825f08.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2d8284aab7825f08.verified.txt new file mode 100644 index 00000000..4bc1c1f6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2d8284aab7825f08.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2dceaca03d45e6bb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2dceaca03d45e6bb.verified.txt new file mode 100644 index 00000000..c613d1f9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2dceaca03d45e6bb.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2e6e0f7baaf94516.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2e6e0f7baaf94516.verified.txt new file mode 100644 index 00000000..f15e3979 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2e6e0f7baaf94516.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ec54c4c0ce905f4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ec54c4c0ce905f4.verified.txt new file mode 100644 index 00000000..55bdc6bf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ec54c4c0ce905f4.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f010ca3166dcd40.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f010ca3166dcd40.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f010ca3166dcd40.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f2aebe703b07595.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f2aebe703b07595.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f2aebe703b07595.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f4bd1f951598aa2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f4bd1f951598aa2.verified.txt new file mode 100644 index 00000000..f15e3979 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f4bd1f951598aa2.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2fb923a83e3b7d18.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2fb923a83e3b7d18.verified.txt new file mode 100644 index 00000000..17191271 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2fb923a83e3b7d18.verified.txt @@ -0,0 +1,87 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Chief Directives Manager,2.4.3,File,,,,,, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +National Creative Facilitator,0.0.1,Url,,,,,, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +National Data Director,0.9.6,Unknown,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Senior Marketing Architect,1.7.9,File,,,,,, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Dynamic Tactics Developer,7.5.4,File,,,,,, +Dynamic Integration Architect,1.6.3,File,,,,,, +National Intranet Technician,8.0.0,Overwrite,,,,,, +Senior Division Liaison,7.1.3,Unknown,,,,,, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Principal Identity Administrator,0.5.2,File,,,,,, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ff8af8abaceba13.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ff8af8abaceba13.verified.txt new file mode 100644 index 00000000..33f842df --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ff8af8abaceba13.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30212445c07faa76.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30212445c07faa76.verified.txt new file mode 100644 index 00000000..f03f69e4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30212445c07faa76.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_307ab4ce1f9ae84e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_307ab4ce1f9ae84e.verified.txt new file mode 100644 index 00000000..aaef37b2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_307ab4ce1f9ae84e.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30a390b2acc66f73.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30a390b2acc66f73.verified.txt new file mode 100644 index 00000000..152505be --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30a390b2acc66f73.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31210bb3b59f9a2f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31210bb3b59f9a2f.verified.txt new file mode 100644 index 00000000..79f02216 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31210bb3b59f9a2f.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31a4561edaa43be5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31a4561edaa43be5.verified.txt new file mode 100644 index 00000000..2abcd95f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31a4561edaa43be5.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_328693ff88472bdd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_328693ff88472bdd.verified.txt new file mode 100644 index 00000000..315b0202 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_328693ff88472bdd.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_32f926ba407a6b94.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_32f926ba407a6b94.verified.txt new file mode 100644 index 00000000..3063153e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_32f926ba407a6b94.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_349be43a276a3c81.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_349be43a276a3c81.verified.txt new file mode 100644 index 00000000..7d3d4f74 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_349be43a276a3c81.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_34ffe2600b4b1ea7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_34ffe2600b4b1ea7.verified.txt new file mode 100644 index 00000000..a225abdf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_34ffe2600b4b1ea7.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_35d98a9778c857ff.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_35d98a9778c857ff.verified.txt new file mode 100644 index 00000000..56887f9f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_35d98a9778c857ff.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_367ba63a09705cd6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_367ba63a09705cd6.verified.txt new file mode 100644 index 00000000..9a8a1621 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_367ba63a09705cd6.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_368cb0f433254506.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_368cb0f433254506.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_368cb0f433254506.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_36fbcd7047b48db1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_36fbcd7047b48db1.verified.txt new file mode 100644 index 00000000..74c262bf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_36fbcd7047b48db1.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_37ab25587c8aae68.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_37ab25587c8aae68.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_37ab25587c8aae68.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3844c3e29528a865.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3844c3e29528a865.verified.txt new file mode 100644 index 00000000..17c8b0b5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3844c3e29528a865.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3866aa4cb82414a0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3866aa4cb82414a0.verified.txt new file mode 100644 index 00000000..ebe4d971 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3866aa4cb82414a0.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38a88eb6dd069c0a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38a88eb6dd069c0a.verified.txt new file mode 100644 index 00000000..cc961e1d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38a88eb6dd069c0a.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Dynamic Markets Supervisor,4.6.5,Ignored,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!",,,"Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden",, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Product Group Assistant,3.3.8,Expression,,,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Corporate Response Administrator,3.4.2,Ignored,,,,"Colleen Satterfield,Colleen Satterfield",https://veronica.biz, +Central Identity Specialist,6.5.9,Ignored,,,,,, +Legacy Data Representative,6.8.8,Ignored,You can't input the firewall without backing up the online USB firewall!,,,"Inez Larson,Inez Larson,Inez Larson",, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Forward Factors Architect,5.5.8,Ignored,,,,"Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein",http://marianne.info, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Direct Factors Architect,9.0.4,File,,,,,, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +Future Security Executive,1.1.3,Expression,,,,,, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +International Creative Technician,6.9.7,Ignored,,,,,http://arne.org, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Direct Communications Analyst,0.1.6,Ignored,We need to synthesize the redundant TCP system!,,,"Darrin Wyman,Darrin Wyman",, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Communications Manager,0.1.8,Ignored,,,,,http://gus.info, +Senior Research Liaison,5.0.6,Ignored,"If we compress the system, we can get to the AGP system through the multi-byte AGP system!",,,"Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson",http://clair.biz, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Dynamic Communications Director,5.7.8,Ignored,,,,,https://hugh.org, +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Internal Applications Analyst,4.0.2,Ignored,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Principal Configuration Developer,6.2.9,Ignored,"If we calculate the program, we can get to the RAM program through the optical RAM program!",,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38d07f0bd741668c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38d07f0bd741668c.verified.txt new file mode 100644 index 00000000..55b393ea --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38d07f0bd741668c.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38f3f8c0407bd6e5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38f3f8c0407bd6e5.verified.txt new file mode 100644 index 00000000..acf5e3c0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38f3f8c0407bd6e5.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_391207dbd6b5d2e2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_391207dbd6b5d2e2.verified.txt new file mode 100644 index 00000000..d2f444ed --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_391207dbd6b5d2e2.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39b7028fcfc4d269.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39b7028fcfc4d269.verified.txt new file mode 100644 index 00000000..1affd03c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39b7028fcfc4d269.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c8a9d395d05630.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c8a9d395d05630.verified.txt new file mode 100644 index 00000000..e6dbe8a0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c8a9d395d05630.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c9085ee18b6b2d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c9085ee18b6b2d.verified.txt new file mode 100644 index 00000000..55b393ea --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c9085ee18b6b2d.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39e72b3f2a5747ee.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39e72b3f2a5747ee.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39e72b3f2a5747ee.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39fc37f46062c5b3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39fc37f46062c5b3.verified.txt new file mode 100644 index 00000000..31fc9cb8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39fc37f46062c5b3.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a42c88d9eed24d5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a42c88d9eed24d5.verified.txt new file mode 100644 index 00000000..43da3eae --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a42c88d9eed24d5.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a67b6dff671a281.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a67b6dff671a281.verified.txt new file mode 100644 index 00000000..a3e58814 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a67b6dff671a281.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b756de17fc3690c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b756de17fc3690c.verified.txt new file mode 100644 index 00000000..7a3719ae --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b756de17fc3690c.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b8431a5bdf5858e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b8431a5bdf5858e.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b8431a5bdf5858e.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b86f2eddd08a332.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b86f2eddd08a332.verified.txt new file mode 100644 index 00000000..7ee8a711 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b86f2eddd08a332.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3ba07775a8169ce2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3ba07775a8169ce2.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3ba07775a8169ce2.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bb3e01d80285d10.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bb3e01d80285d10.verified.txt new file mode 100644 index 00000000..22d41287 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bb3e01d80285d10.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Global Usability Officer,2.2.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bfb04e8bb622282.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bfb04e8bb622282.verified.txt new file mode 100644 index 00000000..5781b664 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bfb04e8bb622282.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Global Usability Officer,2.2.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c6227dc021dca78.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c6227dc021dca78.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c6227dc021dca78.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c69428ccc5dbfc8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c69428ccc5dbfc8.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c69428ccc5dbfc8.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c72743de174cf35.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c72743de174cf35.verified.txt new file mode 100644 index 00000000..225c6b7e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c72743de174cf35.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3cd7c9a83af00fb2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3cd7c9a83af00fb2.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3cd7c9a83af00fb2.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d6aae7927131584.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d6aae7927131584.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d6aae7927131584.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d90fda95864f90e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d90fda95864f90e.verified.txt new file mode 100644 index 00000000..c829ea6e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d90fda95864f90e.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3dc9e15200eae561.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3dc9e15200eae561.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3dc9e15200eae561.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3e6183fda94d251a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3e6183fda94d251a.verified.txt new file mode 100644 index 00000000..12da6c93 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3e6183fda94d251a.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_402ab29c3e87a681.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_402ab29c3e87a681.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_402ab29c3e87a681.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_403dd373152795e1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_403dd373152795e1.verified.txt new file mode 100644 index 00000000..3519c2cb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_403dd373152795e1.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412db18ec6f6f621.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412db18ec6f6f621.verified.txt new file mode 100644 index 00000000..7811c1b1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412db18ec6f6f621.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Global Communications Designer,0.6.3,File,,,,,, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412f578e721e8c29.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412f578e721e8c29.verified.txt new file mode 100644 index 00000000..754f3504 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412f578e721e8c29.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_414aa57ab74b6940.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_414aa57ab74b6940.verified.txt new file mode 100644 index 00000000..f454202e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_414aa57ab74b6940.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_420913f755fede13.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_420913f755fede13.verified.txt new file mode 100644 index 00000000..ee60758d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_420913f755fede13.verified.txt @@ -0,0 +1,8 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_421d0867ba5a53f4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_421d0867ba5a53f4.verified.txt new file mode 100644 index 00000000..ccdd34a2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_421d0867ba5a53f4.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_42bd75a6f98b53a6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_42bd75a6f98b53a6.verified.txt new file mode 100644 index 00000000..9be0af6b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_42bd75a6f98b53a6.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43614b4c3d73d64c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43614b4c3d73d64c.verified.txt new file mode 100644 index 00000000..8c3f319f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43614b4c3d73d64c.verified.txt @@ -0,0 +1,98 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Global Communications Designer,0.6.3,File,,,,,, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_437878896e09b8ba.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_437878896e09b8ba.verified.txt new file mode 100644 index 00000000..5dd17df1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_437878896e09b8ba.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43fa784e4b73c3c4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43fa784e4b73c3c4.verified.txt new file mode 100644 index 00000000..d19df46b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43fa784e4b73c3c4.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_441bcf0215ebcfa6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_441bcf0215ebcfa6.verified.txt new file mode 100644 index 00000000..8e1f45e0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_441bcf0215ebcfa6.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_44b875cb03b75687.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_44b875cb03b75687.verified.txt new file mode 100644 index 00000000..e2a134a5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_44b875cb03b75687.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45a621cdbe7ee2c0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45a621cdbe7ee2c0.verified.txt new file mode 100644 index 00000000..4ca87f30 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45a621cdbe7ee2c0.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45f4dede9aaf2f1d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45f4dede9aaf2f1d.verified.txt new file mode 100644 index 00000000..b6bcc3ce --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45f4dede9aaf2f1d.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46483d58879c5028.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46483d58879c5028.verified.txt new file mode 100644 index 00000000..e282c8b8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46483d58879c5028.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Regional Operations Analyst,7.0.8,Ignored,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,,http://rene.com, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Internal Marketing Executive,2.0.0,Url,,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Principal Intranet Manager,3.8.8,File,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Group Consultant,5.8.4,File,,,,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,http://helen.name, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,,https://anjali.name, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Chief Response Strategist,8.0.4,Ignored,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Marketing Officer,7.2.8,Unknown,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46a020e829a88d13.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46a020e829a88d13.verified.txt new file mode 100644 index 00000000..1424403c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46a020e829a88d13.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46eb8b86445467da.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46eb8b86445467da.verified.txt new file mode 100644 index 00000000..3b06853b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46eb8b86445467da.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_470bbd357709dfd5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_470bbd357709dfd5.verified.txt new file mode 100644 index 00000000..33cf82b4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_470bbd357709dfd5.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_47148afdbadfda9e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_47148afdbadfda9e.verified.txt new file mode 100644 index 00000000..5a6d5438 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_47148afdbadfda9e.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_473503ae811bab67.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_473503ae811bab67.verified.txt new file mode 100644 index 00000000..769cb8bc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_473503ae811bab67.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4738cdb91bf1452d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4738cdb91bf1452d.verified.txt new file mode 100644 index 00000000..4bc1c1f6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4738cdb91bf1452d.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_478b4941af92b240.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_478b4941af92b240.verified.txt new file mode 100644 index 00000000..6524a2f7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_478b4941af92b240.verified.txt @@ -0,0 +1,87 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Product Group Assistant,3.3.8,Expression,,,,,, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Principal Optimization Technician,7.1.3,Url,,,,,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Future Security Executive,1.1.3,Expression,,,,,, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Direct Factors Architect,9.0.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Dynamic Group Consultant,5.8.4,File,,,,,, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_486e2be63e60b654.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_486e2be63e60b654.verified.txt new file mode 100644 index 00000000..488e713a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_486e2be63e60b654.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_48a8a0dd9f517a28.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_48a8a0dd9f517a28.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_48a8a0dd9f517a28.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_490cd706c0f84fa5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_490cd706c0f84fa5.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_490cd706c0f84fa5.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_493a8b7a497fb964.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_493a8b7a497fb964.verified.txt new file mode 100644 index 00000000..b46dd3b3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_493a8b7a497fb964.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_496ae4ddf0081381.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_496ae4ddf0081381.verified.txt new file mode 100644 index 00000000..3a0ccadb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_496ae4ddf0081381.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49a56785212c2cd2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49a56785212c2cd2.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49a56785212c2cd2.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49c0b140de2e11a7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49c0b140de2e11a7.verified.txt new file mode 100644 index 00000000..c01d576c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49c0b140de2e11a7.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a512278836898a1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a512278836898a1.verified.txt new file mode 100644 index 00000000..5fc262d2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a512278836898a1.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a7465d4cfd6c79b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a7465d4cfd6c79b.verified.txt new file mode 100644 index 00000000..6ed4bcda --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a7465d4cfd6c79b.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a9f608cefff6a29.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a9f608cefff6a29.verified.txt new file mode 100644 index 00000000..813b8c90 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a9f608cefff6a29.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Usability Officer,2.2.4,File,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Principal Optimization Technician,7.1.3,Url,,,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Product Marketing Officer,6.2.8,Url,,,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +Principal Intranet Manager,3.8.8,File,,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ad093a2f97a5402.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ad093a2f97a5402.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ad093a2f97a5402.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b115c3dfbe9a6a5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b115c3dfbe9a6a5.verified.txt new file mode 100644 index 00000000..7c44f9d3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b115c3dfbe9a6a5.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b7c6c7318a096b7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b7c6c7318a096b7.verified.txt new file mode 100644 index 00000000..ac5a92c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b7c6c7318a096b7.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b94ac0e300a3a90.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b94ac0e300a3a90.verified.txt new file mode 100644 index 00000000..d4011dce --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b94ac0e300a3a90.verified.txt @@ -0,0 +1,90 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +National Intranet Technician,8.0.0,Url,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b9db30370660cf4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b9db30370660cf4.verified.txt new file mode 100644 index 00000000..c568858c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b9db30370660cf4.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bb4a65154623be5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bb4a65154623be5.verified.txt new file mode 100644 index 00000000..eb8c9fc0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bb4a65154623be5.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf49aa5a8eea459.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf49aa5a8eea459.verified.txt new file mode 100644 index 00000000..0cf3ceb6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf49aa5a8eea459.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf7d1a34f6c999b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf7d1a34f6c999b.verified.txt new file mode 100644 index 00000000..054cb3f7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf7d1a34f6c999b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ca8444dd35e7350.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ca8444dd35e7350.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ca8444dd35e7350.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4e296fffbc54128d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4e296fffbc54128d.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4e296fffbc54128d.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ea6360560090c80.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ea6360560090c80.verified.txt new file mode 100644 index 00000000..908d185b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ea6360560090c80.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eafeab72f69d105.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eafeab72f69d105.verified.txt new file mode 100644 index 00000000..cceff11c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eafeab72f69d105.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eeccf3f5c0f0d26.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eeccf3f5c0f0d26.verified.txt new file mode 100644 index 00000000..635ca9e7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eeccf3f5c0f0d26.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f369e684b4793a7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f369e684b4793a7.verified.txt new file mode 100644 index 00000000..f2f9e75f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f369e684b4793a7.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f437a966456f36b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f437a966456f36b.verified.txt new file mode 100644 index 00000000..025c7760 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f437a966456f36b.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f7ae45a9abd05ef.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f7ae45a9abd05ef.verified.txt new file mode 100644 index 00000000..488e713a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f7ae45a9abd05ef.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4fdce49dd2ed63a6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4fdce49dd2ed63a6.verified.txt new file mode 100644 index 00000000..58f6842f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4fdce49dd2ed63a6.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_506fcb7bca72e678.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_506fcb7bca72e678.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_506fcb7bca72e678.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_51bc635588dce728.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_51bc635588dce728.verified.txt new file mode 100644 index 00000000..01ac3452 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_51bc635588dce728.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_524be565157adc4b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_524be565157adc4b.verified.txt new file mode 100644 index 00000000..c3b9a57f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_524be565157adc4b.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_528b178b18facd10.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_528b178b18facd10.verified.txt new file mode 100644 index 00000000..165af092 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_528b178b18facd10.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52af0a7e40ed4b55.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52af0a7e40ed4b55.verified.txt new file mode 100644 index 00000000..e2a134a5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52af0a7e40ed4b55.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52b4286a0570fb79.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52b4286a0570fb79.verified.txt new file mode 100644 index 00000000..e8e3ac7e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52b4286a0570fb79.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Global Communications Designer,0.6.3,File,,,,,, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53155a3df6e5014a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53155a3df6e5014a.verified.txt new file mode 100644 index 00000000..96b7db07 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53155a3df6e5014a.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_531f8a6547a0bc4f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_531f8a6547a0bc4f.verified.txt new file mode 100644 index 00000000..a1e266af --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_531f8a6547a0bc4f.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_539383b8d415e69f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_539383b8d415e69f.verified.txt new file mode 100644 index 00000000..cd075292 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_539383b8d415e69f.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53afaf1a712b083a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53afaf1a712b083a.verified.txt new file mode 100644 index 00000000..d79e36c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53afaf1a712b083a.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53ea9f9f176be132.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53ea9f9f176be132.verified.txt new file mode 100644 index 00000000..d79e36c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53ea9f9f176be132.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_540b7e1f732d51b7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_540b7e1f732d51b7.verified.txt new file mode 100644 index 00000000..2327b995 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_540b7e1f732d51b7.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_54c2128673e5c414.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_54c2128673e5c414.verified.txt new file mode 100644 index 00000000..3ddc3d07 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_54c2128673e5c414.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55408ed4729d547e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55408ed4729d547e.verified.txt new file mode 100644 index 00000000..4c7455ea --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55408ed4729d547e.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5547d28470b2471c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5547d28470b2471c.verified.txt new file mode 100644 index 00000000..91f45e11 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5547d28470b2471c.verified.txt @@ -0,0 +1,16 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5549ade40974eefb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5549ade40974eefb.verified.txt new file mode 100644 index 00000000..c816c9ba --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5549ade40974eefb.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4c7d3334d44d3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4c7d3334d44d3.verified.txt new file mode 100644 index 00000000..b0af3a89 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4c7d3334d44d3.verified.txt @@ -0,0 +1,39 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4de00a1364362.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4de00a1364362.verified.txt new file mode 100644 index 00000000..6d466bd8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4de00a1364362.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c588b70c50020f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c588b70c50020f.verified.txt new file mode 100644 index 00000000..d1c4f239 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c588b70c50020f.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55e5c24cd8420512.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55e5c24cd8420512.verified.txt new file mode 100644 index 00000000..fafd4772 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55e5c24cd8420512.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56112c3fe0c5b214.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56112c3fe0c5b214.verified.txt new file mode 100644 index 00000000..8c532d74 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56112c3fe0c5b214.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5659b1ef8186a7fb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5659b1ef8186a7fb.verified.txt new file mode 100644 index 00000000..fd76db6d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5659b1ef8186a7fb.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,,https://anjali.name, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Regional Operations Analyst,7.0.8,Ignored,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,,http://rene.com, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Marketing Officer,6.2.8,Url,,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,http://helen.name, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Principal Intranet Manager,3.8.8,File,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Chief Response Strategist,8.0.4,Ignored,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56732340deeee280.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56732340deeee280.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56732340deeee280.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_57c567e9a231b86c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_57c567e9a231b86c.verified.txt new file mode 100644 index 00000000..d734f69e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_57c567e9a231b86c.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Global Usability Officer,2.2.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5900d4064fcc9a25.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5900d4064fcc9a25.verified.txt new file mode 100644 index 00000000..204a662a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5900d4064fcc9a25.verified.txt @@ -0,0 +1,39 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_592f0b3fcc3ca5b7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_592f0b3fcc3ca5b7.verified.txt new file mode 100644 index 00000000..ecf65a71 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_592f0b3fcc3ca5b7.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5a95f5e613772d99.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5a95f5e613772d99.verified.txt new file mode 100644 index 00000000..25f7d6e3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5a95f5e613772d99.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5b0e96c23666763f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5b0e96c23666763f.verified.txt new file mode 100644 index 00000000..c568858c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5b0e96c23666763f.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5bff6367c4d98fb2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5bff6367c4d98fb2.verified.txt new file mode 100644 index 00000000..6ea4dc51 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5bff6367c4d98fb2.verified.txt @@ -0,0 +1,89 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Global Security Liaison,6.1.8,Expression,,,,,, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c563e18abb9b774.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c563e18abb9b774.verified.txt new file mode 100644 index 00000000..20945c96 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c563e18abb9b774.verified.txt @@ -0,0 +1,86 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Interactions Officer,9.4.9,Url,,,,,, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +National Intranet Technician,8.0.0,Url,,,,,, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Human Group Engineer,9.8.9,Overwrite,,,,,, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c816091f9ee52e6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c816091f9ee52e6.verified.txt new file mode 100644 index 00000000..2548e81b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c816091f9ee52e6.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5cbe40d4d810581a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5cbe40d4d810581a.verified.txt new file mode 100644 index 00000000..48876cb3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5cbe40d4d810581a.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5d569ebaed4bb797.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5d569ebaed4bb797.verified.txt new file mode 100644 index 00000000..6e5aae5b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5d569ebaed4bb797.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5db740630aa6d0aa.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5db740630aa6d0aa.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5db740630aa6d0aa.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5dd0c823179d6d92.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5dd0c823179d6d92.verified.txt new file mode 100644 index 00000000..21767aeb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5dd0c823179d6d92.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Global Communications Designer,0.6.3,File,,,,,, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e1b982731dfcb78.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e1b982731dfcb78.verified.txt new file mode 100644 index 00000000..1d143639 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e1b982731dfcb78.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e35c5d5f85b94d6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e35c5d5f85b94d6.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e35c5d5f85b94d6.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee27823e32b202f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee27823e32b202f.verified.txt new file mode 100644 index 00000000..1c8f7998 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee27823e32b202f.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee8c7aa489eda9a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee8c7aa489eda9a.verified.txt new file mode 100644 index 00000000..7d760562 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee8c7aa489eda9a.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f099f14ab7ee3c0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f099f14ab7ee3c0.verified.txt new file mode 100644 index 00000000..6944c1c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f099f14ab7ee3c0.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Global Communications Designer,0.6.3,File,,,,,, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f31412b1a9d0005.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f31412b1a9d0005.verified.txt new file mode 100644 index 00000000..4c7455ea --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f31412b1a9d0005.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f67ca0ea5507104.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f67ca0ea5507104.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f67ca0ea5507104.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5fd2bb09f18077dc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5fd2bb09f18077dc.verified.txt new file mode 100644 index 00000000..7a3719ae --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5fd2bb09f18077dc.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_605628582a6a71e9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_605628582a6a71e9.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_605628582a6a71e9.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60b80076f3ba1782.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60b80076f3ba1782.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60b80076f3ba1782.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60c7fbab4e549f32.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60c7fbab4e549f32.verified.txt new file mode 100644 index 00000000..b6a49733 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60c7fbab4e549f32.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_618ec6efef6eaebb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_618ec6efef6eaebb.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_618ec6efef6eaebb.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_62bda71b9a118f43.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_62bda71b9a118f43.verified.txt new file mode 100644 index 00000000..7476242f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_62bda71b9a118f43.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63555e04ffd07806.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63555e04ffd07806.verified.txt new file mode 100644 index 00000000..182abde5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63555e04ffd07806.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63f2cbc1416cb368.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63f2cbc1416cb368.verified.txt new file mode 100644 index 00000000..95fa325c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63f2cbc1416cb368.verified.txt @@ -0,0 +1,33 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Future Creative Analyst,0.1.8,Unknown,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64a7202213fafb27.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64a7202213fafb27.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64a7202213fafb27.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64b8c9f5c4cefbd1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64b8c9f5c4cefbd1.verified.txt new file mode 100644 index 00000000..b06c6063 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64b8c9f5c4cefbd1.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6576574df07852b1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6576574df07852b1.verified.txt new file mode 100644 index 00000000..2dce3c30 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6576574df07852b1.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_657f52ed0dfc9e03.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_657f52ed0dfc9e03.verified.txt new file mode 100644 index 00000000..c568858c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_657f52ed0dfc9e03.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65a97cfe80ff89d4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65a97cfe80ff89d4.verified.txt new file mode 100644 index 00000000..feb2ad20 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65a97cfe80ff89d4.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e526ede58b15fa.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e526ede58b15fa.verified.txt new file mode 100644 index 00000000..55b393ea --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e526ede58b15fa.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e8b95acf6b0cc5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e8b95acf6b0cc5.verified.txt new file mode 100644 index 00000000..ed7b300a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e8b95acf6b0cc5.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6644a4cf6034c5be.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6644a4cf6034c5be.verified.txt new file mode 100644 index 00000000..a225abdf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6644a4cf6034c5be.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_66800a6855a879e4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_66800a6855a879e4.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_66800a6855a879e4.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6692e55109a6246a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6692e55109a6246a.verified.txt new file mode 100644 index 00000000..c6ac31d1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6692e55109a6246a.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_669648871bdd0d7a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_669648871bdd0d7a.verified.txt new file mode 100644 index 00000000..5fc262d2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_669648871bdd0d7a.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67af68dd5d2f82f6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67af68dd5d2f82f6.verified.txt new file mode 100644 index 00000000..b6bcc3ce --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67af68dd5d2f82f6.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67e8527245c3e86c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67e8527245c3e86c.verified.txt new file mode 100644 index 00000000..456dd782 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67e8527245c3e86c.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Global Usability Officer,2.2.4,File,,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68157b79e1bc75fc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68157b79e1bc75fc.verified.txt new file mode 100644 index 00000000..054cb3f7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68157b79e1bc75fc.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68a0ba32c8e31949.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68a0ba32c8e31949.verified.txt new file mode 100644 index 00000000..22b62eda --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68a0ba32c8e31949.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68bde6b18ad651fe.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68bde6b18ad651fe.verified.txt new file mode 100644 index 00000000..11ea582a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68bde6b18ad651fe.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6900d41a1c07fd5e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6900d41a1c07fd5e.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6900d41a1c07fd5e.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691b5cad42c1d06b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691b5cad42c1d06b.verified.txt new file mode 100644 index 00000000..b97f56e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691b5cad42c1d06b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691c0ea51b3c0553.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691c0ea51b3c0553.verified.txt new file mode 100644 index 00000000..2327b995 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691c0ea51b3c0553.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_696c46e1aed52747.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_696c46e1aed52747.verified.txt new file mode 100644 index 00000000..0e61d237 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_696c46e1aed52747.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Chief Directives Manager,2.4.3,File,,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6a9516a0e92e6515.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6a9516a0e92e6515.verified.txt new file mode 100644 index 00000000..9d5ac7b1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6a9516a0e92e6515.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6aeb5593f7a0b7a3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6aeb5593f7a0b7a3.verified.txt new file mode 100644 index 00000000..a225abdf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6aeb5593f7a0b7a3.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b31968c91ea4889.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b31968c91ea4889.verified.txt new file mode 100644 index 00000000..d9b0871e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b31968c91ea4889.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b5690f21a666557.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b5690f21a666557.verified.txt new file mode 100644 index 00000000..745c02fe --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b5690f21a666557.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Human Implementation Producer,0.9.1,Url,,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b6ba699a706497f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b6ba699a706497f.verified.txt new file mode 100644 index 00000000..c7b26340 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b6ba699a706497f.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Markets Coordinator,3.4.4,Expression,,,,,, +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bbc1a6c684cb047.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bbc1a6c684cb047.verified.txt new file mode 100644 index 00000000..afc6f2b6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bbc1a6c684cb047.verified.txt @@ -0,0 +1,31 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bd566b40b05fd26.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bd566b40b05fd26.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bd566b40b05fd26.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6be8b8a487153399.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6be8b8a487153399.verified.txt new file mode 100644 index 00000000..46bafb04 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6be8b8a487153399.verified.txt @@ -0,0 +1,15 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cc81da2f08c720f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cc81da2f08c720f.verified.txt new file mode 100644 index 00000000..8e1f45e0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cc81da2f08c720f.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cdb7e0d6f966ca2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cdb7e0d6f966ca2.verified.txt new file mode 100644 index 00000000..1ba7ab95 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cdb7e0d6f966ca2.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1aff4231b1426a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1aff4231b1426a.verified.txt new file mode 100644 index 00000000..d59572c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1aff4231b1426a.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1ef048b30cf634.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1ef048b30cf634.verified.txt new file mode 100644 index 00000000..ad8b1522 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1ef048b30cf634.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d55cb7373d4becc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d55cb7373d4becc.verified.txt new file mode 100644 index 00000000..ebe4d971 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d55cb7373d4becc.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d7ce816be54f10a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d7ce816be54f10a.verified.txt new file mode 100644 index 00000000..2ec0960b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d7ce816be54f10a.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Global Communications Designer,0.6.3,File,,,,,, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e4b6bd4b4c20d94.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e4b6bd4b4c20d94.verified.txt new file mode 100644 index 00000000..c699dcb7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e4b6bd4b4c20d94.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e899c35baa8fef2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e899c35baa8fef2.verified.txt new file mode 100644 index 00000000..608cd39a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e899c35baa8fef2.verified.txt @@ -0,0 +1,8 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ecaf0546a9b37a3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ecaf0546a9b37a3.verified.txt new file mode 100644 index 00000000..b6bcc3ce --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ecaf0546a9b37a3.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ed49d0dbe568f62.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ed49d0dbe568f62.verified.txt new file mode 100644 index 00000000..56fb7265 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ed49d0dbe568f62.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7009361f7f5e6452.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7009361f7f5e6452.verified.txt new file mode 100644 index 00000000..74c262bf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7009361f7f5e6452.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70442333d42bb76b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70442333d42bb76b.verified.txt new file mode 100644 index 00000000..184fa8f2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70442333d42bb76b.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_707b4bd96b1113b3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_707b4bd96b1113b3.verified.txt new file mode 100644 index 00000000..356d6663 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_707b4bd96b1113b3.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70c2075e50828b9d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70c2075e50828b9d.verified.txt new file mode 100644 index 00000000..01a6496b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70c2075e50828b9d.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70e69c81ae42b5d6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70e69c81ae42b5d6.verified.txt new file mode 100644 index 00000000..9947f309 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70e69c81ae42b5d6.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_710125f1318765d5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_710125f1318765d5.verified.txt new file mode 100644 index 00000000..965c4c0d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_710125f1318765d5.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7125dfdacd87c976.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7125dfdacd87c976.verified.txt new file mode 100644 index 00000000..c27693af --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7125dfdacd87c976.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7271fa3cb73a48af.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7271fa3cb73a48af.verified.txt new file mode 100644 index 00000000..01e1c6eb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7271fa3cb73a48af.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7318dba6e91b8a5e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7318dba6e91b8a5e.verified.txt new file mode 100644 index 00000000..e057012e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7318dba6e91b8a5e.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_73aec498d9e79224.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_73aec498d9e79224.verified.txt new file mode 100644 index 00000000..a1a41ea9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_73aec498d9e79224.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7444e34738500951.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7444e34738500951.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7444e34738500951.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74789f86eb338869.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74789f86eb338869.verified.txt new file mode 100644 index 00000000..1587d68a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74789f86eb338869.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74a0b043fad04382.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74a0b043fad04382.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74a0b043fad04382.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74f297a6f7aa319d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74f297a6f7aa319d.verified.txt new file mode 100644 index 00000000..a013a393 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74f297a6f7aa319d.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7560cb45eca9948b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7560cb45eca9948b.verified.txt new file mode 100644 index 00000000..d4a3f591 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7560cb45eca9948b.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75c5093bb019dbf5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75c5093bb019dbf5.verified.txt new file mode 100644 index 00000000..656ef571 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75c5093bb019dbf5.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75e7fd9c08fbf94b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75e7fd9c08fbf94b.verified.txt new file mode 100644 index 00000000..f15e3979 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75e7fd9c08fbf94b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76055bfa933dd2ad.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76055bfa933dd2ad.verified.txt new file mode 100644 index 00000000..65af8bff --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76055bfa933dd2ad.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Chief Directives Manager,2.4.3,File,,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Chief Identity Designer,9.2.3,Expression,,,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_769c240021d6651a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_769c240021d6651a.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_769c240021d6651a.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b55202f4bd2b75.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b55202f4bd2b75.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b55202f4bd2b75.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b5986e21417a75.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b5986e21417a75.verified.txt new file mode 100644 index 00000000..8584e6b2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b5986e21417a75.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7712ac593083a354.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7712ac593083a354.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7712ac593083a354.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_772e60b58cac50a2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_772e60b58cac50a2.verified.txt new file mode 100644 index 00000000..b6bcc3ce --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_772e60b58cac50a2.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_77d14850efb839be.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_77d14850efb839be.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_77d14850efb839be.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_781e4d27dd828886.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_781e4d27dd828886.verified.txt new file mode 100644 index 00000000..d8f0b415 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_781e4d27dd828886.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +National Data Director,0.9.6,Unknown,,,,,, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Dynamic Security Assistant,2.0.0,Ignored,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +District Tactics Specialist,4.7.6,Ignored,,,,,, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Legacy Web Administrator,6.2.8,Expression,,,,,, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Senior Division Liaison,7.1.3,Unknown,,,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Chief Identity Specialist,6.4.7,Ignored,"transmitting the monitor won't do anything, we need to reboot the online XML monitor!",,,,, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +District Accounts Specialist,3.9.2,Unknown,,,,,, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Legacy Creative Representative,6.3.7,Ignored,We need to program the digital SMTP capacitor!,,,,https://addison.org, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +National Intranet Technician,8.0.0,Overwrite,,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Web Director,5.0.7,Ignored,,,,,http://lacy.name, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +National Creative Facilitator,0.0.1,Url,,,,,, +Customer Functionality Consultant,5.5.1,Ignored,"The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol!",,,,http://terence.com, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +National Brand Liaison,8.9.2,Ignored,,,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +Principal Identity Administrator,0.5.2,File,,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Dynamic Integration Architect,1.6.3,File,,,,,, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Regional Division Assistant,6.8.5,Ignored,,,,,https://elmira.net, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Central Creative Representative,5.1.9,Ignored,,,,,http://asa.com, +Chief Identity Designer,9.2.3,Expression,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Future Assurance Analyst,1.1.1,Ignored,,,,,, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Chief Directives Manager,2.4.3,File,,,,,, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Dynamic Tactics Developer,7.5.4,File,,,,,, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Senior Marketing Architect,1.7.9,File,,,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Dynamic Identity Director,8.4.5,Ignored,,,,,https://bradly.name, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78304cab733904ab.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78304cab733904ab.verified.txt new file mode 100644 index 00000000..f15e3979 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78304cab733904ab.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_786bc1e2253fca5b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_786bc1e2253fca5b.verified.txt new file mode 100644 index 00000000..965c4c0d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_786bc1e2253fca5b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78ac73052ae6cea0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78ac73052ae6cea0.verified.txt new file mode 100644 index 00000000..8042f819 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78ac73052ae6cea0.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_79216c6848a98314.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_79216c6848a98314.verified.txt new file mode 100644 index 00000000..3524adde --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_79216c6848a98314.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7aae8e0c47821d05.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7aae8e0c47821d05.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7aae8e0c47821d05.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c3f9f87741d4db9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c3f9f87741d4db9.verified.txt new file mode 100644 index 00000000..d9b0871e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c3f9f87741d4db9.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c4b358c3f1518b1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c4b358c3f1518b1.verified.txt new file mode 100644 index 00000000..cd075292 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c4b358c3f1518b1.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7d90d7100e977181.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7d90d7100e977181.verified.txt new file mode 100644 index 00000000..9620939a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7d90d7100e977181.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7da33ace93dc8eca.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7da33ace93dc8eca.verified.txt new file mode 100644 index 00000000..3063153e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7da33ace93dc8eca.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7dd18a97f94de586.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7dd18a97f94de586.verified.txt new file mode 100644 index 00000000..d59572c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7dd18a97f94de586.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e37e8c3eab130e8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e37e8c3eab130e8.verified.txt new file mode 100644 index 00000000..e93b8703 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e37e8c3eab130e8.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e3e8fbbdb99d147.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e3e8fbbdb99d147.verified.txt new file mode 100644 index 00000000..3186295b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e3e8fbbdb99d147.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ed0078f5e7efea0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ed0078f5e7efea0.verified.txt new file mode 100644 index 00000000..1b0a8c81 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ed0078f5e7efea0.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f039cd703fb7734.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f039cd703fb7734.verified.txt new file mode 100644 index 00000000..75d7022f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f039cd703fb7734.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f96fa5b21903366.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f96fa5b21903366.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f96fa5b21903366.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ff4309fada7c9d8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ff4309fada7c9d8.verified.txt new file mode 100644 index 00000000..acb8ce9d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ff4309fada7c9d8.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8068dccfe7fc338e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8068dccfe7fc338e.verified.txt new file mode 100644 index 00000000..c40df7b8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8068dccfe7fc338e.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80845638fe9bc954.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80845638fe9bc954.verified.txt new file mode 100644 index 00000000..e92c5fdd --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80845638fe9bc954.verified.txt @@ -0,0 +1,15 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80aa9b8783ad0d6d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80aa9b8783ad0d6d.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80aa9b8783ad0d6d.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8116a6403258e1ea.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8116a6403258e1ea.verified.txt new file mode 100644 index 00000000..1a8f9502 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8116a6403258e1ea.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_818161f7ac0dfdab.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_818161f7ac0dfdab.verified.txt new file mode 100644 index 00000000..34f2654b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_818161f7ac0dfdab.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82469ce7bc85a70b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82469ce7bc85a70b.verified.txt new file mode 100644 index 00000000..4de1e7ff --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82469ce7bc85a70b.verified.txt @@ -0,0 +1,86 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Human Implementation Producer,0.9.1,Url,,,,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Internal Marketing Executive,2.0.0,Url,,,,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Product Marketing Officer,6.2.8,Url,,,,,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +Principal Intranet Manager,3.8.8,File,,,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82616d1cccd83960.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82616d1cccd83960.verified.txt new file mode 100644 index 00000000..e6679ba0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82616d1cccd83960.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_827ae74d07e331a4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_827ae74d07e331a4.verified.txt new file mode 100644 index 00000000..bd1df89c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_827ae74d07e331a4.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_839073d6b9664024.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_839073d6b9664024.verified.txt new file mode 100644 index 00000000..cc9130bf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_839073d6b9664024.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Regional Operations Analyst,7.0.8,Ignored,,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,http://rene.com, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Internal Marketing Executive,2.0.0,Url,,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Principal Intranet Manager,3.8.8,File,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Product Web Strategist,3.5.8,Ignored,,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,, +Human Implementation Producer,0.9.1,Url,,,,,, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,,We need to input the neural SQL program!,,, +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Group Consultant,5.8.4,File,,,,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,,"If we copy the array, we can get to the SAS array through the neural SAS array!",,http://helen.name, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,https://anjali.name, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Chief Response Strategist,8.0.4,Ignored,,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Marketing Officer,7.2.8,Unknown,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8397a7f0daecdc05.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8397a7f0daecdc05.verified.txt new file mode 100644 index 00000000..b06c6063 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8397a7f0daecdc05.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84a0b950fb3481a4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84a0b950fb3481a4.verified.txt new file mode 100644 index 00000000..10fd5fc5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84a0b950fb3481a4.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84ee167c50c5f507.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84ee167c50c5f507.verified.txt new file mode 100644 index 00000000..b2fd4754 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84ee167c50c5f507.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8511cfc3fbbf0054.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8511cfc3fbbf0054.verified.txt new file mode 100644 index 00000000..7dd0c38d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8511cfc3fbbf0054.verified.txt @@ -0,0 +1,8 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_851e17497ab0c7ec.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_851e17497ab0c7ec.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_851e17497ab0c7ec.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_853a7e7e815980ad.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_853a7e7e815980ad.verified.txt new file mode 100644 index 00000000..0ee913d2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_853a7e7e815980ad.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85468527671693af.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85468527671693af.verified.txt new file mode 100644 index 00000000..58dc08d9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85468527671693af.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Chief Directives Manager,2.4.3,File,,,,,, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Dynamic Identity Director,8.4.5,Ignored,,,,,https://bradly.name, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +Legacy Creative Representative,6.3.7,Ignored,We need to program the digital SMTP capacitor!,,,,https://addison.org, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +National Creative Facilitator,0.0.1,Url,,,,,, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +District Tactics Specialist,4.7.6,Ignored,,,,,, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +National Data Director,0.9.6,Unknown,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Senior Marketing Architect,1.7.9,File,,,,,, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Regional Division Assistant,6.8.5,Ignored,,,,,https://elmira.net, +Dynamic Security Assistant,2.0.0,Ignored,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Customer Functionality Consultant,5.5.1,Ignored,"The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol!",,,,http://terence.com, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +National Brand Liaison,8.9.2,Ignored,,,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +Chief Identity Specialist,6.4.7,Ignored,"transmitting the monitor won't do anything, we need to reboot the online XML monitor!",,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +Central Creative Representative,5.1.9,Ignored,,,,,http://asa.com, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Dynamic Tactics Developer,7.5.4,File,,,,,, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Dynamic Integration Architect,1.6.3,File,,,,,, +National Intranet Technician,8.0.0,Overwrite,,,,,, +Senior Division Liaison,7.1.3,Unknown,,,,,, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Future Assurance Analyst,1.1.1,Ignored,,,,,, +Future Web Director,5.0.7,Ignored,,,,,http://lacy.name, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Principal Identity Administrator,0.5.2,File,,,,,, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85583fba2d7081a1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85583fba2d7081a1.verified.txt new file mode 100644 index 00000000..cd075292 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85583fba2d7081a1.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85c996d89e36df5c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85c996d89e36df5c.verified.txt new file mode 100644 index 00000000..04a01f0c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85c996d89e36df5c.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_869de7bd87f56810.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_869de7bd87f56810.verified.txt new file mode 100644 index 00000000..5df1cd02 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_869de7bd87f56810.verified.txt @@ -0,0 +1,37 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_87e21189052a1cf4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_87e21189052a1cf4.verified.txt new file mode 100644 index 00000000..33f842df --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_87e21189052a1cf4.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88229ac990a239df.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88229ac990a239df.verified.txt new file mode 100644 index 00000000..c697e0ad --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88229ac990a239df.verified.txt @@ -0,0 +1,86 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Global Security Liaison,6.1.8,Expression,,,,,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88cfa8d236a279f8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88cfa8d236a279f8.verified.txt new file mode 100644 index 00000000..36c0b8e4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88cfa8d236a279f8.verified.txt @@ -0,0 +1,8 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88f1ccc53f8f1e77.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88f1ccc53f8f1e77.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88f1ccc53f8f1e77.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_890b856f9fa9101f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_890b856f9fa9101f.verified.txt new file mode 100644 index 00000000..facb103b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_890b856f9fa9101f.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +National Group Developer,6.2.0,Ignored,,,"If we calculate the hard drive, we can get to the CSS hard drive through the mobile CSS hard drive!","Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka",https://kane.net, +Human Assurance Manager,3.0.6,Ignored,,,,"Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski",, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +Dynamic Tactics Administrator,7.8.4,Ignored,"I'll parse the primary XSS port, that should port the XSS port!","Try to parse the IB panel, maybe it will parse the bluetooth panel!","The SMS bandwidth is down, synthesize the digital bandwidth so we can synthesize the SMS bandwidth!",,http://edna.biz, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Lead Metrics Associate,3.3.8,Ignored,,,,"Jeremy Robel,Jeremy Robel,Jeremy Robel",, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Internal Assurance Assistant,6.8.3,Ignored,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,"synthesizing the monitor won't do anything, we need to copy the 1080p PNG monitor!","Alan Price,Alan Price,Alan Price",, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Customer Applications Supervisor,9.0.5,Ignored,,"Use the online IB protocol, then you can back up the online protocol!",,,, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +Direct Accountability Technician,3.5.8,Ignored,,,,,, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Internal Security Liaison,1.0.0,Ignored,,,"overriding the interface won't do anything, we need to override the virtual THX interface!",,http://kathryne.com, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +Dynamic Operations Administrator,2.0.9,Ignored,,You can't generate the application without transmitting the redundant SAS application!,,"Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham",, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Direct Identity Analyst,4.1.1,Ignored,,We need to connect the mobile SCSI matrix!,,,, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Global Communications Designer,0.6.3,File,,,,,, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +District Functionality Architect,4.5.8,Ignored,,"I'll copy the solid state CSS port, that should port the CSS port!",,,, +Dynamic Data Director,3.0.6,Ignored,,"If we back up the monitor, we can get to the AI monitor through the optical AI monitor!",,"Shaun Ryan,Shaun Ryan,Shaun Ryan,Shaun Ryan",http://karli.biz, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Dynamic Operations Technician,2.2.6,Ignored,You can't connect the port without connecting the back-end COM port!,,We need to quantify the optical GB feed!,,http://sandrine.com, +Legacy Group Architect,0.7.9,Ignored,"calculating the sensor won't do anything, we need to hack the primary JSON sensor!",You can't navigate the circuit without generating the back-end AI circuit!,,,https://burley.info, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Future Data Technician,2.5.1,Ignored,,,"I'll copy the auxiliary SQL array, that should array the SQL array!","Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan",, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Customer Functionality Liaison,3.9.2,Ignored,,,,"Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic",https://lois.name, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!","Use the auxiliary PNG pixel, then you can navigate the auxiliary pixel!",,, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_898b2c5c4dc3741c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_898b2c5c4dc3741c.verified.txt new file mode 100644 index 00000000..1a503fe7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_898b2c5c4dc3741c.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89a445a356f7aaed.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89a445a356f7aaed.verified.txt new file mode 100644 index 00000000..1446f8b4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89a445a356f7aaed.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Legacy Response Specialist,0.9.4,Ignored,,,We need to generate the online HDD matrix!,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Interactions Officer,9.4.9,Url,,,,,, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +International Data Associate,8.9.3,Ignored,,,,,, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +National Intranet Technician,8.0.0,Url,,,,,, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",,You can't override the capacitor without navigating the cross-platform FTP capacitor!,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Human Group Engineer,9.8.9,Overwrite,,,,,, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Investor Identity Manager,7.9.5,Ignored,,,You can't index the microchip without backing up the back-end CSS microchip!,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Product Branding Director,1.2.7,Ignored,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89f288ba363c7168.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89f288ba363c7168.verified.txt new file mode 100644 index 00000000..f19b3f03 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89f288ba363c7168.verified.txt @@ -0,0 +1,87 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Global Security Liaison,6.1.8,Expression,,,,,, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a4e0f1400d00be4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a4e0f1400d00be4.verified.txt new file mode 100644 index 00000000..3d38c1a7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a4e0f1400d00be4.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +Chief Directives Manager,2.4.3,File,,,,,, +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a83c3451c408130.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a83c3451c408130.verified.txt new file mode 100644 index 00000000..5c362e9f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a83c3451c408130.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Data Representative,6.8.8,Ignored,You can't input the firewall without backing up the online USB firewall!,,,"Inez Larson,Inez Larson,Inez Larson",, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Research Liaison,5.0.6,Ignored,"If we compress the system, we can get to the AGP system through the multi-byte AGP system!",,,"Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson",http://clair.biz, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Future Security Executive,1.1.3,Expression,,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Product Group Assistant,3.3.8,Expression,,,,,, +Forward Factors Architect,5.5.8,Ignored,,,,"Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein",http://marianne.info, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Direct Factors Architect,9.0.4,File,,,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Central Identity Specialist,6.5.9,Ignored,,,,,, +Internal Applications Analyst,4.0.2,Ignored,,,,,, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Dynamic Markets Supervisor,4.6.5,Ignored,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!",,,"Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden",, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +Principal Configuration Developer,6.2.9,Ignored,"If we calculate the program, we can get to the RAM program through the optical RAM program!",,,,, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Direct Communications Analyst,0.1.6,Ignored,We need to synthesize the redundant TCP system!,,,"Darrin Wyman,Darrin Wyman",, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Corporate Response Administrator,3.4.2,Ignored,,,,"Colleen Satterfield,Colleen Satterfield",https://veronica.biz, +International Creative Technician,6.9.7,Ignored,,,,,http://arne.org, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Dynamic Communications Director,5.7.8,Ignored,,,,,https://hugh.org, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Legacy Communications Manager,0.1.8,Ignored,,,,,http://gus.info, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8abe216a7cd7a10a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8abe216a7cd7a10a.verified.txt new file mode 100644 index 00000000..fa17c016 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8abe216a7cd7a10a.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8b9ac9eb9331065a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8b9ac9eb9331065a.verified.txt new file mode 100644 index 00000000..054cb3f7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8b9ac9eb9331065a.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8c250981cdb4ed2e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8c250981cdb4ed2e.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8c250981cdb4ed2e.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d4a7176715995dd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d4a7176715995dd.verified.txt new file mode 100644 index 00000000..cceff11c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d4a7176715995dd.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d5b897372f014f7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d5b897372f014f7.verified.txt new file mode 100644 index 00000000..c68efd81 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d5b897372f014f7.verified.txt @@ -0,0 +1,89 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +National Creative Facilitator,0.0.1,Url,,,,,, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +National Intranet Technician,8.0.0,Overwrite,,,,,, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Dynamic Integration Architect,1.6.3,File,,,,,, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Chief Directives Manager,2.4.3,File,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Dynamic Tactics Developer,7.5.4,File,,,,,, +National Data Director,0.9.6,Unknown,,,,,, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Senior Marketing Architect,1.7.9,File,,,,,, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Principal Identity Administrator,0.5.2,File,,,,,, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Senior Division Liaison,7.1.3,Unknown,,,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d8cd89d7a5694ec.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d8cd89d7a5694ec.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d8cd89d7a5694ec.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8ef6f9b5c0b9a40f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8ef6f9b5c0b9a40f.verified.txt new file mode 100644 index 00000000..218e63d1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8ef6f9b5c0b9a40f.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Chief Directives Manager,2.4.3,File,,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f081a7acd9fe2e6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f081a7acd9fe2e6.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f081a7acd9fe2e6.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f7570952c268c8f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f7570952c268c8f.verified.txt new file mode 100644 index 00000000..f24ae887 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f7570952c268c8f.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8fd63972fb6f8677.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8fd63972fb6f8677.verified.txt new file mode 100644 index 00000000..58399cae --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8fd63972fb6f8677.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9013bb99ab138e4f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9013bb99ab138e4f.verified.txt new file mode 100644 index 00000000..e299db29 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9013bb99ab138e4f.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9044fbb4e1aa6c22.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9044fbb4e1aa6c22.verified.txt new file mode 100644 index 00000000..7932ee32 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9044fbb4e1aa6c22.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9072a73cb215b901.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9072a73cb215b901.verified.txt new file mode 100644 index 00000000..2ec0acc3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9072a73cb215b901.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_908ab95a4f83e2a1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_908ab95a4f83e2a1.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_908ab95a4f83e2a1.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_909b106d4e6ee186.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_909b106d4e6ee186.verified.txt new file mode 100644 index 00000000..8b863305 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_909b106d4e6ee186.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Global Security Liaison,6.1.8,Expression,,,,,, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_90c6d3128e45d9e0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_90c6d3128e45d9e0.verified.txt new file mode 100644 index 00000000..3a8244bb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_90c6d3128e45d9e0.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_92283b45cfb12452.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_92283b45cfb12452.verified.txt new file mode 100644 index 00000000..118be441 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_92283b45cfb12452.verified.txt @@ -0,0 +1,83 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Global Communications Designer,0.6.3,File,,,,,, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9313c311a800655c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9313c311a800655c.verified.txt new file mode 100644 index 00000000..ef3e4391 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9313c311a800655c.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9385da1eb46bdc4f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9385da1eb46bdc4f.verified.txt new file mode 100644 index 00000000..2792c99f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9385da1eb46bdc4f.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93d9eccf8eeaea9b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93d9eccf8eeaea9b.verified.txt new file mode 100644 index 00000000..8bc03ca4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93d9eccf8eeaea9b.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93ed44e2c85af435.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93ed44e2c85af435.verified.txt new file mode 100644 index 00000000..56887f9f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93ed44e2c85af435.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_940124ab7e4154ad.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_940124ab7e4154ad.verified.txt new file mode 100644 index 00000000..754f3504 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_940124ab7e4154ad.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_948acdb6d58ecbe1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_948acdb6d58ecbe1.verified.txt new file mode 100644 index 00000000..264f0963 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_948acdb6d58ecbe1.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Chief Directives Manager,2.4.3,File,,,,,, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Chief Identity Designer,9.2.3,Expression,,,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_94e8f46657d0036c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_94e8f46657d0036c.verified.txt new file mode 100644 index 00000000..01e1c6eb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_94e8f46657d0036c.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_954442952eb6db31.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_954442952eb6db31.verified.txt new file mode 100644 index 00000000..491e0632 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_954442952eb6db31.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_967644bba64f126d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_967644bba64f126d.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_967644bba64f126d.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_96e92e8b6c089bb7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_96e92e8b6c089bb7.verified.txt new file mode 100644 index 00000000..e7274401 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_96e92e8b6c089bb7.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Markets Producer,8.7.1,Expression,,,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +International Data Associate,8.9.3,Ignored,,,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Human Interactions Officer,9.4.9,Url,,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",You can't override the capacitor without navigating the cross-platform FTP capacitor!,,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +National Intranet Technician,8.0.0,Url,,,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Response Specialist,0.9.4,Ignored,,We need to generate the online HDD matrix!,,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Investor Identity Manager,7.9.5,Ignored,,You can't index the microchip without backing up the back-end CSS microchip!,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Future Operations Assistant,9.9.1,Expression,,,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Product Branding Director,1.2.7,Ignored,,,,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Product Solutions Specialist,2.4.9,Expression,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_988223ede6a35c07.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_988223ede6a35c07.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_988223ede6a35c07.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_98b3bda9231da2bb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_98b3bda9231da2bb.verified.txt new file mode 100644 index 00000000..fb8eb663 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_98b3bda9231da2bb.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_99223293023eb4b5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_99223293023eb4b5.verified.txt new file mode 100644 index 00000000..5b8de6ec --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_99223293023eb4b5.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Markets Coordinator,3.4.4,Expression,,,,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a01f6ff08033779.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a01f6ff08033779.verified.txt new file mode 100644 index 00000000..01e1c6eb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a01f6ff08033779.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a80aa778748b877.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a80aa778748b877.verified.txt new file mode 100644 index 00000000..9be0af6b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a80aa778748b877.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bab5c1277cf212d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bab5c1277cf212d.verified.txt new file mode 100644 index 00000000..f8068a68 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bab5c1277cf212d.verified.txt @@ -0,0 +1,15 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bb762180e4b454a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bb762180e4b454a.verified.txt new file mode 100644 index 00000000..154cc265 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bb762180e4b454a.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bda919f493f56b6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bda919f493f56b6.verified.txt new file mode 100644 index 00000000..c9269afc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bda919f493f56b6.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +International Data Associate,8.9.3,Ignored,,,,,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Legacy Response Specialist,0.9.4,Ignored,,We need to generate the online HDD matrix!,,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",You can't override the capacitor without navigating the cross-platform FTP capacitor!,,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Product Branding Director,1.2.7,Ignored,,,,,, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Intranet Technician,8.0.0,Url,,,,,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Investor Identity Manager,7.9.5,Ignored,,You can't index the microchip without backing up the back-end CSS microchip!,,,, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c231a39cf9360ac.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c231a39cf9360ac.verified.txt new file mode 100644 index 00000000..486d7219 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c231a39cf9360ac.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c27d57d82cfddf3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c27d57d82cfddf3.verified.txt new file mode 100644 index 00000000..87b86119 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c27d57d82cfddf3.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Future Creative Analyst,0.1.8,Unknown,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c57c30ee2c1903c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c57c30ee2c1903c.verified.txt new file mode 100644 index 00000000..c568858c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c57c30ee2c1903c.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d15ffbe31c12dcc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d15ffbe31c12dcc.verified.txt new file mode 100644 index 00000000..f5705eb8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d15ffbe31c12dcc.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d5ed2099b4e1737.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d5ed2099b4e1737.verified.txt new file mode 100644 index 00000000..7c14ea9b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d5ed2099b4e1737.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d6ede8e7e03c8dd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d6ede8e7e03c8dd.verified.txt new file mode 100644 index 00000000..30515bc9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d6ede8e7e03c8dd.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9da7cabd0ba7d6d8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9da7cabd0ba7d6d8.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9da7cabd0ba7d6d8.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9dc2719c5df803d7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9dc2719c5df803d7.verified.txt new file mode 100644 index 00000000..84f8ecb9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9dc2719c5df803d7.verified.txt @@ -0,0 +1,86 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Interactions Officer,9.4.9,Url,,,,,, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +National Intranet Technician,8.0.0,Url,,,,,, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Human Group Engineer,9.8.9,Overwrite,,,,,, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9debdc154014ea77.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9debdc154014ea77.verified.txt new file mode 100644 index 00000000..3b06853b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9debdc154014ea77.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0104cff49621b50.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0104cff49621b50.verified.txt new file mode 100644 index 00000000..bac37d2b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0104cff49621b50.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +Human Assurance Manager,3.0.6,Ignored,,,,"Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski",, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +National Group Developer,6.2.0,Ignored,,,"If we calculate the hard drive, we can get to the CSS hard drive through the mobile CSS hard drive!","Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka",https://kane.net, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Internal Security Liaison,1.0.0,Ignored,,,"overriding the interface won't do anything, we need to override the virtual THX interface!",,http://kathryne.com, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!","Use the auxiliary PNG pixel, then you can navigate the auxiliary pixel!",,, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Internal Assurance Assistant,6.8.3,Ignored,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,"synthesizing the monitor won't do anything, we need to copy the 1080p PNG monitor!","Alan Price,Alan Price,Alan Price",, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Dynamic Tactics Administrator,7.8.4,Ignored,"I'll parse the primary XSS port, that should port the XSS port!","Try to parse the IB panel, maybe it will parse the bluetooth panel!","The SMS bandwidth is down, synthesize the digital bandwidth so we can synthesize the SMS bandwidth!",,http://edna.biz, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Dynamic Operations Administrator,2.0.9,Ignored,,You can't generate the application without transmitting the redundant SAS application!,,"Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham",, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +Customer Applications Supervisor,9.0.5,Ignored,,"Use the online IB protocol, then you can back up the online protocol!",,,, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Lead Metrics Associate,3.3.8,Ignored,,,,"Jeremy Robel,Jeremy Robel,Jeremy Robel",, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Future Data Technician,2.5.1,Ignored,,,"I'll copy the auxiliary SQL array, that should array the SQL array!","Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan",, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Dynamic Operations Technician,2.2.6,Ignored,You can't connect the port without connecting the back-end COM port!,,We need to quantify the optical GB feed!,,http://sandrine.com, +Direct Identity Analyst,4.1.1,Ignored,,We need to connect the mobile SCSI matrix!,,,, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +District Functionality Architect,4.5.8,Ignored,,"I'll copy the solid state CSS port, that should port the CSS port!",,,, +Customer Functionality Liaison,3.9.2,Ignored,,,,"Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic",https://lois.name, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +Legacy Group Architect,0.7.9,Ignored,"calculating the sensor won't do anything, we need to hack the primary JSON sensor!",You can't navigate the circuit without generating the back-end AI circuit!,,,https://burley.info, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Dynamic Data Director,3.0.6,Ignored,,"If we back up the monitor, we can get to the AI monitor through the optical AI monitor!",,"Shaun Ryan,Shaun Ryan,Shaun Ryan,Shaun Ryan",http://karli.biz, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Global Communications Designer,0.6.3,File,,,,,, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Direct Accountability Technician,3.5.8,Ignored,,,,,, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0370ff6f21a5d3e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0370ff6f21a5d3e.verified.txt new file mode 100644 index 00000000..f91e3cd8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0370ff6f21a5d3e.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a10dc3eb7111d074.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a10dc3eb7111d074.verified.txt new file mode 100644 index 00000000..c568858c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a10dc3eb7111d074.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a1bfc47d2373b565.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a1bfc47d2373b565.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a1bfc47d2373b565.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a26f77dcd1636905.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a26f77dcd1636905.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a26f77dcd1636905.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a28d069ca5796bfa.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a28d069ca5796bfa.verified.txt new file mode 100644 index 00000000..6ed4bcda --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a28d069ca5796bfa.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2b17bf6beb96c97.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2b17bf6beb96c97.verified.txt new file mode 100644 index 00000000..cf9a919d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2b17bf6beb96c97.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2c22f31fec5fa5e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2c22f31fec5fa5e.verified.txt new file mode 100644 index 00000000..b46dd3b3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2c22f31fec5fa5e.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a355d2aeca94b7f1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a355d2aeca94b7f1.verified.txt new file mode 100644 index 00000000..322ec3a8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a355d2aeca94b7f1.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3a38ea56ae69ff4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3a38ea56ae69ff4.verified.txt new file mode 100644 index 00000000..f7b6d779 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3a38ea56ae69ff4.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +International Data Associate,8.9.3,Ignored,,,,,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Legacy Response Specialist,0.9.4,Ignored,,,We need to generate the online HDD matrix!,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",,You can't override the capacitor without navigating the cross-platform FTP capacitor!,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Product Branding Director,1.2.7,Ignored,,,,,, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Intranet Technician,8.0.0,Url,,,,,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Investor Identity Manager,7.9.5,Ignored,,,You can't index the microchip without backing up the back-end CSS microchip!,,, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3e24e1588632e69.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3e24e1588632e69.verified.txt new file mode 100644 index 00000000..7f4fb242 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3e24e1588632e69.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a408883e5f8139cc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a408883e5f8139cc.verified.txt new file mode 100644 index 00000000..c829ea6e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a408883e5f8139cc.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a45fbf41c7fc7086.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a45fbf41c7fc7086.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a45fbf41c7fc7086.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46406ce5ead2d8c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46406ce5ead2d8c.verified.txt new file mode 100644 index 00000000..acb8ce9d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46406ce5ead2d8c.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a469cfa7e2f56c60.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a469cfa7e2f56c60.verified.txt new file mode 100644 index 00000000..abf4fbf1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a469cfa7e2f56c60.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Markets Coordinator,3.4.4,Expression,,,,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46d4e55c281f126.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46d4e55c281f126.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46d4e55c281f126.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a5dc90ebde5226a7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a5dc90ebde5226a7.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a5dc90ebde5226a7.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a64e2d92d49ffbc2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a64e2d92d49ffbc2.verified.txt new file mode 100644 index 00000000..afa0d8f6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a64e2d92d49ffbc2.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Product Group Assistant,3.3.8,Expression,,,,,, +Dynamic Markets Supervisor,4.6.5,Ignored,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!",,,"Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden",, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Principal Configuration Developer,6.2.9,Ignored,"If we calculate the program, we can get to the RAM program through the optical RAM program!",,,,, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Direct Communications Analyst,0.1.6,Ignored,We need to synthesize the redundant TCP system!,,,"Darrin Wyman,Darrin Wyman",, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Principal Optimization Technician,7.1.3,Url,,,,,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Legacy Communications Manager,0.1.8,Ignored,,,,,http://gus.info, +Legacy Data Representative,6.8.8,Ignored,You can't input the firewall without backing up the online USB firewall!,,,"Inez Larson,Inez Larson,Inez Larson",, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Corporate Response Administrator,3.4.2,Ignored,,,,"Colleen Satterfield,Colleen Satterfield",https://veronica.biz, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +Senior Research Liaison,5.0.6,Ignored,"If we compress the system, we can get to the AGP system through the multi-byte AGP system!",,,"Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson",http://clair.biz, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Internal Applications Analyst,4.0.2,Ignored,,,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Central Identity Specialist,6.5.9,Ignored,,,,,, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Future Security Executive,1.1.3,Expression,,,,,, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Dynamic Communications Director,5.7.8,Ignored,,,,,https://hugh.org, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Direct Factors Architect,9.0.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Dynamic Group Consultant,5.8.4,File,,,,,, +International Creative Technician,6.9.7,Ignored,,,,,http://arne.org, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Forward Factors Architect,5.5.8,Ignored,,,,"Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein",http://marianne.info, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6522c4f5793f54e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6522c4f5793f54e.verified.txt new file mode 100644 index 00000000..d8dd9875 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6522c4f5793f54e.verified.txt @@ -0,0 +1,83 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Marketing Officer,6.2.8,Url,,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Principal Intranet Manager,3.8.8,File,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6e6d90d4e6bb213.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6e6d90d4e6bb213.verified.txt new file mode 100644 index 00000000..bda5d3c6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6e6d90d4e6bb213.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a72882605aea19a4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a72882605aea19a4.verified.txt new file mode 100644 index 00000000..315b0202 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a72882605aea19a4.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a73127f0906cf730.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a73127f0906cf730.verified.txt new file mode 100644 index 00000000..0ee913d2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a73127f0906cf730.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a926b8d5849b15c1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a926b8d5849b15c1.verified.txt new file mode 100644 index 00000000..0cf3ceb6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a926b8d5849b15c1.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a96857ad910db45e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a96857ad910db45e.verified.txt new file mode 100644 index 00000000..471a5987 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a96857ad910db45e.verified.txt @@ -0,0 +1,83 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Marketing Officer,6.2.8,Url,,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Principal Intranet Manager,3.8.8,File,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa55e1226ff50b04.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa55e1226ff50b04.verified.txt new file mode 100644 index 00000000..d4ae7e2c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa55e1226ff50b04.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa604c24262e3a2c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa604c24262e3a2c.verified.txt new file mode 100644 index 00000000..f74cad3c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa604c24262e3a2c.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa932cef4a31a50f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa932cef4a31a50f.verified.txt new file mode 100644 index 00000000..7ee8a711 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa932cef4a31a50f.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab0f3e64cd1bc06c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab0f3e64cd1bc06c.verified.txt new file mode 100644 index 00000000..cd9c11fc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab0f3e64cd1bc06c.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Global Communications Designer,0.6.3,File,,,,,, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab7ef1d940301941.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab7ef1d940301941.verified.txt new file mode 100644 index 00000000..e32aeb78 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab7ef1d940301941.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abb6c30e2dcddfc7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abb6c30e2dcddfc7.verified.txt new file mode 100644 index 00000000..eb8c9fc0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abb6c30e2dcddfc7.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abe3cc076f5d61c3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abe3cc076f5d61c3.verified.txt new file mode 100644 index 00000000..dd87e508 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abe3cc076f5d61c3.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ac6c110d0d105fb2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ac6c110d0d105fb2.verified.txt new file mode 100644 index 00000000..c07ae798 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ac6c110d0d105fb2.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad6e0d1c163421b0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad6e0d1c163421b0.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad6e0d1c163421b0.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad751736a0206dfa.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad751736a0206dfa.verified.txt new file mode 100644 index 00000000..13489b6e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad751736a0206dfa.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae33a75604de98ed.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae33a75604de98ed.verified.txt new file mode 100644 index 00000000..d4a3f591 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae33a75604de98ed.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae860cbbe977fb00.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae860cbbe977fb00.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae860cbbe977fb00.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae880a43d86fb4d3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae880a43d86fb4d3.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae880a43d86fb4d3.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae95ae6f1ff4dacb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae95ae6f1ff4dacb.verified.txt new file mode 100644 index 00000000..230e27aa --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae95ae6f1ff4dacb.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_af7cb40805127391.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_af7cb40805127391.verified.txt new file mode 100644 index 00000000..e0a579cc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_af7cb40805127391.verified.txt @@ -0,0 +1,90 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +National Intranet Technician,8.0.0,Url,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b0309d9d6b9f2563.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b0309d9d6b9f2563.verified.txt new file mode 100644 index 00000000..061421f0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b0309d9d6b9f2563.verified.txt @@ -0,0 +1,88 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Intranet Technician,8.0.0,Url,,,,,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b04794e574ad8da7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b04794e574ad8da7.verified.txt new file mode 100644 index 00000000..3a8244bb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b04794e574ad8da7.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b29c7c77abf53baa.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b29c7c77abf53baa.verified.txt new file mode 100644 index 00000000..8381976e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b29c7c77abf53baa.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30d66e2cbf18b87.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30d66e2cbf18b87.verified.txt new file mode 100644 index 00000000..b46dd3b3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30d66e2cbf18b87.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30e9c5ccf49b6db.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30e9c5ccf49b6db.verified.txt new file mode 100644 index 00000000..415e9e08 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30e9c5ccf49b6db.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3651b9eae25e00a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3651b9eae25e00a.verified.txt new file mode 100644 index 00000000..bac61c05 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3651b9eae25e00a.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3a0f13ac69dbf0e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3a0f13ac69dbf0e.verified.txt new file mode 100644 index 00000000..0cf3ceb6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3a0f13ac69dbf0e.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3bfdf2289d72440.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3bfdf2289d72440.verified.txt new file mode 100644 index 00000000..c613d1f9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3bfdf2289d72440.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b4bc66a05db6099f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b4bc66a05db6099f.verified.txt new file mode 100644 index 00000000..fe5fcd04 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b4bc66a05db6099f.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5276ae16c41078d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5276ae16c41078d.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5276ae16c41078d.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5e9aacbdc8e59f3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5e9aacbdc8e59f3.verified.txt new file mode 100644 index 00000000..e299db29 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5e9aacbdc8e59f3.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5fa52ef041b269b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5fa52ef041b269b.verified.txt new file mode 100644 index 00000000..a2eea74d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5fa52ef041b269b.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +Customer Functionality Consultant,5.5.1,Ignored,"The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol!",,,,http://terence.com, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +Dynamic Identity Director,8.4.5,Ignored,,,,,https://bradly.name, +National Creative Facilitator,0.0.1,Url,,,,,, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Regional Division Assistant,6.8.5,Ignored,,,,,https://elmira.net, +National Intranet Technician,8.0.0,Overwrite,,,,,, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Assurance Analyst,1.1.1,Ignored,,,,,, +Legacy Creative Representative,6.3.7,Ignored,We need to program the digital SMTP capacitor!,,,,https://addison.org, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +Future Web Director,5.0.7,Ignored,,,,,http://lacy.name, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Dynamic Integration Architect,1.6.3,File,,,,,, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Central Creative Representative,5.1.9,Ignored,,,,,http://asa.com, +Chief Directives Manager,2.4.3,File,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +National Brand Liaison,8.9.2,Ignored,,,,,, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Dynamic Tactics Developer,7.5.4,File,,,,,, +Dynamic Security Assistant,2.0.0,Ignored,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +National Data Director,0.9.6,Unknown,,,,,, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Senior Marketing Architect,1.7.9,File,,,,,, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Principal Identity Administrator,0.5.2,File,,,,,, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Senior Division Liaison,7.1.3,Unknown,,,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +District Tactics Specialist,4.7.6,Ignored,,,,,, +Chief Identity Specialist,6.4.7,Ignored,"transmitting the monitor won't do anything, we need to reboot the online XML monitor!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6aa7cdb8b8fa603.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6aa7cdb8b8fa603.verified.txt new file mode 100644 index 00000000..1d12c397 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6aa7cdb8b8fa603.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6e586540c40a347.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6e586540c40a347.verified.txt new file mode 100644 index 00000000..ad8b1522 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6e586540c40a347.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b8e915fa8507c22c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b8e915fa8507c22c.verified.txt new file mode 100644 index 00000000..5fc262d2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b8e915fa8507c22c.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b95a61e5015599ca.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b95a61e5015599ca.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b95a61e5015599ca.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b98ef5adcc901463.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b98ef5adcc901463.verified.txt new file mode 100644 index 00000000..fb707563 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b98ef5adcc901463.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Future Creative Analyst,0.1.8,Unknown,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b9e044b4a939e79c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b9e044b4a939e79c.verified.txt new file mode 100644 index 00000000..01e1c6eb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b9e044b4a939e79c.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bad9d6635cfb1616.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bad9d6635cfb1616.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bad9d6635cfb1616.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb0b406ad5816e24.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb0b406ad5816e24.verified.txt new file mode 100644 index 00000000..270ae703 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb0b406ad5816e24.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb3a5d2be01fd901.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb3a5d2be01fd901.verified.txt new file mode 100644 index 00000000..ba5d410b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb3a5d2be01fd901.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb4ef313d84c8125.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb4ef313d84c8125.verified.txt new file mode 100644 index 00000000..78167d5b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb4ef313d84c8125.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb9bf440375d0f8a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb9bf440375d0f8a.verified.txt new file mode 100644 index 00000000..8820e0f0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb9bf440375d0f8a.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bcab3ccefaf092a7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bcab3ccefaf092a7.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bcab3ccefaf092a7.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd5536908178da0e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd5536908178da0e.verified.txt new file mode 100644 index 00000000..db91a7b8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd5536908178da0e.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd876ec02f27d0ca.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd876ec02f27d0ca.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd876ec02f27d0ca.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_be09de838a5dff0c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_be09de838a5dff0c.verified.txt new file mode 100644 index 00000000..eda7c493 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_be09de838a5dff0c.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bf3c336ef77cddff.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bf3c336ef77cddff.verified.txt new file mode 100644 index 00000000..0642e4c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bf3c336ef77cddff.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Product Group Assistant,3.3.8,Expression,,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Dynamic Group Consultant,5.8.4,File,,,,,, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Future Security Executive,1.1.3,Expression,,,,,, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Direct Factors Architect,9.0.4,File,,,,,, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bff13170842e270d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bff13170842e270d.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bff13170842e270d.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0059d77d0f50c86.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0059d77d0f50c86.verified.txt new file mode 100644 index 00000000..fdf8fb0a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0059d77d0f50c86.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Senior Division Liaison,7.1.3,Unknown,,,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +National Brand Liaison,8.9.2,Ignored,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Principal Identity Administrator,0.5.2,File,,,,,, +Customer Functionality Consultant,5.5.1,Ignored,"The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol!",,,,http://terence.com, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Regional Division Assistant,6.8.5,Ignored,,,,,https://elmira.net, +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +National Creative Facilitator,0.0.1,Url,,,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Dynamic Security Assistant,2.0.0,Ignored,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +Future Web Director,5.0.7,Ignored,,,,,http://lacy.name, +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +District Tactics Specialist,4.7.6,Ignored,,,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Dynamic Identity Director,8.4.5,Ignored,,,,,https://bradly.name, +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Central Creative Representative,5.1.9,Ignored,,,,,http://asa.com, +Senior Marketing Architect,1.7.9,File,,,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Chief Directives Manager,2.4.3,File,,,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Data Director,0.9.6,Unknown,,,,,, +Chief Identity Specialist,6.4.7,Ignored,"transmitting the monitor won't do anything, we need to reboot the online XML monitor!",,,,, +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +National Intranet Technician,8.0.0,Overwrite,,,,,, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Legacy Creative Representative,6.3.7,Ignored,We need to program the digital SMTP capacitor!,,,,https://addison.org, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Dynamic Integration Architect,1.6.3,File,,,,,, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Dynamic Tactics Developer,7.5.4,File,,,,,, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Future Assurance Analyst,1.1.1,Ignored,,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c09112303a5ba917.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c09112303a5ba917.verified.txt new file mode 100644 index 00000000..c6ac31d1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c09112303a5ba917.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0c2de7f1515c0cd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0c2de7f1515c0cd.verified.txt new file mode 100644 index 00000000..3558f6f3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0c2de7f1515c0cd.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c1e0b71c5089be04.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c1e0b71c5089be04.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c1e0b71c5089be04.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c210c606723a5bfe.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c210c606723a5bfe.verified.txt new file mode 100644 index 00000000..d4ddac81 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c210c606723a5bfe.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c23fde7528d04948.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c23fde7528d04948.verified.txt new file mode 100644 index 00000000..9947f309 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c23fde7528d04948.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c270240dad02ece8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c270240dad02ece8.verified.txt new file mode 100644 index 00000000..8e1f45e0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c270240dad02ece8.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c28177905a50b512.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c28177905a50b512.verified.txt new file mode 100644 index 00000000..7c14ea9b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c28177905a50b512.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c2f6bd6697b9a12f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c2f6bd6697b9a12f.verified.txt new file mode 100644 index 00000000..c6ac31d1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c2f6bd6697b9a12f.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c349bd2532e391c1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c349bd2532e391c1.verified.txt new file mode 100644 index 00000000..47f500fb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c349bd2532e391c1.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Dynamic Functionality Architect,8.0.1,Ignored,,,We need to connect the auxiliary HTTP protocol!,,http://sally.net, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Principal Implementation Developer,7.0.7,Ignored,,,"I'll parse the primary USB interface, that should interface the USB interface!",,, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Regional Markets Architect,6.4.6,Ignored,,"I'll hack the haptic JSON matrix, that should matrix the JSON matrix!","generating the transmitter won't do anything, we need to copy the bluetooth COM transmitter!",,, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Global Security Liaison,6.1.8,Expression,,,,,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Global Branding Manager,2.6.7,Ignored,"If we generate the panel, we can get to the SMTP panel through the online SMTP panel!",,,,, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Product Security Manager,3.4.7,Ignored,,,"I'll parse the primary XSS port, that should port the XSS port!",,http://shaun.biz, +Customer Integration Agent,3.6.0,Ignored,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Senior Integration Assistant,6.4.2,Ignored,We need to hack the cross-platform USB circuit!,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Try to navigate the USB bus, maybe it will navigate the online bus!",,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +District Accountability Consultant,5.4.8,Ignored,"synthesizing the application won't do anything, we need to synthesize the online CSS application!","If we quantify the bus, we can get to the SMS bus through the open-source SMS bus!",,,https://leola.org, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Regional Optimization Strategist,4.9.4,Ignored,,,"I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth!",,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Dynamic Tactics Supervisor,3.8.2,Ignored,,,,,, +Legacy Web Facilitator,4.4.3,Ignored,"Use the redundant AGP microchip, then you can override the redundant microchip!","Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,http://frederick.com, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Senior Metrics Assistant,8.7.4,Ignored,,"Use the solid state IB interface, then you can override the solid state interface!","If we compress the panel, we can get to the HDD panel through the digital HDD panel!",,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Dynamic Marketing Consultant,8.6.3,Ignored,,You can't back up the protocol without indexing the neural SQL protocol!,"I'll transmit the multi-byte CSS pixel, that should pixel the CSS pixel!",,, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Forward Web Developer,9.4.5,Ignored,"If we transmit the feed, we can get to the SDD feed through the wireless SDD feed!",,,,https://mikayla.com, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",You can't bypass the firewall without indexing the multi-byte COM firewall!,,http://helen.name, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c36d563747c1729f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c36d563747c1729f.verified.txt new file mode 100644 index 00000000..4c59c3e3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c36d563747c1729f.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Usability Officer,2.2.4,File,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Principal Optimization Technician,7.1.3,Url,,,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +Principal Intranet Manager,3.8.8,File,,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c3f260f80d604734.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c3f260f80d604734.verified.txt new file mode 100644 index 00000000..86d8db6e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c3f260f80d604734.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c44a76835511ec47.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c44a76835511ec47.verified.txt new file mode 100644 index 00000000..488e713a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c44a76835511ec47.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c505fd137b3d8a72.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c505fd137b3d8a72.verified.txt new file mode 100644 index 00000000..6bcbe301 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c505fd137b3d8a72.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Global Usability Officer,2.2.4,File,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c55cbc438e7c1f61.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c55cbc438e7c1f61.verified.txt new file mode 100644 index 00000000..d59572c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c55cbc438e7c1f61.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c5ab4efc721a4aa0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c5ab4efc721a4aa0.verified.txt new file mode 100644 index 00000000..30f956f6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c5ab4efc721a4aa0.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,https://anjali.name, +Product Web Strategist,3.5.8,Ignored,,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Internal Marketing Executive,2.0.0,Url,,,,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,,"If we copy the array, we can get to the SAS array through the neural SAS array!",,http://helen.name, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Regional Operations Analyst,7.0.8,Ignored,,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,http://rene.com, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Product Marketing Officer,6.2.8,Url,,,,,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +International Marketing Officer,7.2.8,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +Principal Intranet Manager,3.8.8,File,,,,,, +Chief Response Strategist,8.0.4,Ignored,,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,,We need to input the neural SQL program!,,, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c6ae407b909d9dcd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c6ae407b909d9dcd.verified.txt new file mode 100644 index 00000000..4a5279bc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c6ae407b909d9dcd.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,,https://anjali.name, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,http://helen.name, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Usability Officer,2.2.4,File,,,,,, +Chief Response Strategist,8.0.4,Ignored,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,,, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Regional Operations Analyst,7.0.8,Ignored,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,,http://rene.com, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Principal Optimization Technician,7.1.3,Url,,,,,, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,,, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +Principal Intranet Manager,3.8.8,File,,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c709e97a586cd871.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c709e97a586cd871.verified.txt new file mode 100644 index 00000000..133513d7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c709e97a586cd871.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c774ee810b53c74e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c774ee810b53c74e.verified.txt new file mode 100644 index 00000000..656ef571 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c774ee810b53c74e.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c77e2c850f59f841.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c77e2c850f59f841.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c77e2c850f59f841.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c809b56539a1291f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c809b56539a1291f.verified.txt new file mode 100644 index 00000000..644d2162 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c809b56539a1291f.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Chief Identity Designer,9.2.3,Expression,,,,,, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c80e407fa62ad8d3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c80e407fa62ad8d3.verified.txt new file mode 100644 index 00000000..656ef571 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c80e407fa62ad8d3.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c86541a94d26b389.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c86541a94d26b389.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c86541a94d26b389.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8b04f2ca58bfda6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8b04f2ca58bfda6.verified.txt new file mode 100644 index 00000000..eb8c9fc0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8b04f2ca58bfda6.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8db80e12cef9264.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8db80e12cef9264.verified.txt new file mode 100644 index 00000000..90cf48c4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8db80e12cef9264.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c91e5ed3ab28d6af.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c91e5ed3ab28d6af.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c91e5ed3ab28d6af.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9297c8524265d06.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9297c8524265d06.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9297c8524265d06.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c988c4d2cd907c20.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c988c4d2cd907c20.verified.txt new file mode 100644 index 00000000..f74f875d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c988c4d2cd907c20.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Legacy Response Specialist,0.9.4,Ignored,,We need to generate the online HDD matrix!,,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Investor Identity Manager,7.9.5,Ignored,,You can't index the microchip without backing up the back-end CSS microchip!,,,, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",You can't override the capacitor without navigating the cross-platform FTP capacitor!,,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +National Intranet Technician,8.0.0,Url,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +International Data Associate,8.9.3,Ignored,,,,,, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Product Branding Director,1.2.7,Ignored,,,,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9aa095dc3f3d197.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9aa095dc3f3d197.verified.txt new file mode 100644 index 00000000..f454202e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9aa095dc3f3d197.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ac3d9bc7eb8135.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ac3d9bc7eb8135.verified.txt new file mode 100644 index 00000000..b97f56e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ac3d9bc7eb8135.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9c94445167dc2e4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9c94445167dc2e4.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9c94445167dc2e4.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ebfa41a0573884.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ebfa41a0573884.verified.txt new file mode 100644 index 00000000..d79e36c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ebfa41a0573884.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ca62f9e04edfa3bc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ca62f9e04edfa3bc.verified.txt new file mode 100644 index 00000000..d59572c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ca62f9e04edfa3bc.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_caa778f1a451043b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_caa778f1a451043b.verified.txt new file mode 100644 index 00000000..1a7154fd --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_caa778f1a451043b.verified.txt @@ -0,0 +1,8 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cacba92d2f10db8d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cacba92d2f10db8d.verified.txt new file mode 100644 index 00000000..c91da3a7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cacba92d2f10db8d.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cae17b964471e32e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cae17b964471e32e.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cae17b964471e32e.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cb55307afef85407.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cb55307afef85407.verified.txt new file mode 100644 index 00000000..ffcfb049 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cb55307afef85407.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Human Metrics Manager,7.7.2,Ignored,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,http://clint.com,Gilda (https://oswald.org); Darien (https://sedrick.net); Marianna (http://prudence.org) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cbdadf24888f4839.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cbdadf24888f4839.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cbdadf24888f4839.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cc168e417d72be24.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cc168e417d72be24.verified.txt new file mode 100644 index 00000000..0c38eae4 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cc168e417d72be24.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Global Communications Designer,0.6.3,File,,,,,, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd493c50d5417319.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd493c50d5417319.verified.txt new file mode 100644 index 00000000..e9ec4679 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd493c50d5417319.verified.txt @@ -0,0 +1,10 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd836fa5143aeb9b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd836fa5143aeb9b.verified.txt new file mode 100644 index 00000000..e43ff9fc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd836fa5143aeb9b.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Dynamic Functionality Architect,8.0.1,Ignored,,,We need to connect the auxiliary HTTP protocol!,,http://sally.net, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Principal Implementation Developer,7.0.7,Ignored,,,"I'll parse the primary USB interface, that should interface the USB interface!",,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Regional Markets Architect,6.4.6,Ignored,,"I'll hack the haptic JSON matrix, that should matrix the JSON matrix!","generating the transmitter won't do anything, we need to copy the bluetooth COM transmitter!",,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Global Security Liaison,6.1.8,Expression,,,,,, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +Global Branding Manager,2.6.7,Ignored,"If we generate the panel, we can get to the SMTP panel through the online SMTP panel!",,,,, +Forward Web Developer,9.4.5,Ignored,"If we transmit the feed, we can get to the SDD feed through the wireless SDD feed!",,,,https://mikayla.com, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Product Security Manager,3.4.7,Ignored,,,"I'll parse the primary XSS port, that should port the XSS port!",,http://shaun.biz, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Regional Optimization Strategist,4.9.4,Ignored,,,"I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth!",,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Customer Integration Agent,3.6.0,Ignored,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Dynamic Marketing Consultant,8.6.3,Ignored,,You can't back up the protocol without indexing the neural SQL protocol!,"I'll transmit the multi-byte CSS pixel, that should pixel the CSS pixel!",,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Dynamic Tactics Supervisor,3.8.2,Ignored,,,,,, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",You can't bypass the firewall without indexing the multi-byte COM firewall!,,http://helen.name, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Senior Integration Assistant,6.4.2,Ignored,We need to hack the cross-platform USB circuit!,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Try to navigate the USB bus, maybe it will navigate the online bus!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +District Accountability Consultant,5.4.8,Ignored,"synthesizing the application won't do anything, we need to synthesize the online CSS application!","If we quantify the bus, we can get to the SMS bus through the open-source SMS bus!",,,https://leola.org, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Legacy Web Facilitator,4.4.3,Ignored,"Use the redundant AGP microchip, then you can override the redundant microchip!","Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,http://frederick.com, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +Senior Metrics Assistant,8.7.4,Ignored,,"Use the solid state IB interface, then you can override the solid state interface!","If we compress the panel, we can get to the HDD panel through the digital HDD panel!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde34fc6bbb134fe.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde34fc6bbb134fe.verified.txt new file mode 100644 index 00000000..61b1fe43 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde34fc6bbb134fe.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde544c38fec4a49.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde544c38fec4a49.verified.txt new file mode 100644 index 00000000..c3b9a57f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde544c38fec4a49.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ce63170c38b9a06a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ce63170c38b9a06a.verified.txt new file mode 100644 index 00000000..9d5ac7b1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ce63170c38b9a06a.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cf29390c8fb84443.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cf29390c8fb84443.verified.txt new file mode 100644 index 00000000..51a8bd23 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cf29390c8fb84443.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0451e45d55d4a91.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0451e45d55d4a91.verified.txt new file mode 100644 index 00000000..4bd7deec --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0451e45d55d4a91.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Markets Coordinator,3.4.4,Expression,,,,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0491e20745f503b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0491e20745f503b.verified.txt new file mode 100644 index 00000000..821bfccc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0491e20745f503b.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0660aa623876ba6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0660aa623876ba6.verified.txt new file mode 100644 index 00000000..5002f0a8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0660aa623876ba6.verified.txt @@ -0,0 +1,105 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Markets Producer,8.7.1,Expression,,,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Human Interactions Officer,9.4.9,Url,,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +National Intranet Technician,8.0.0,Url,,,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Future Operations Assistant,9.9.1,Expression,,,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Product Solutions Specialist,2.4.9,Expression,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0add0786c18d524.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0add0786c18d524.verified.txt new file mode 100644 index 00000000..c1fd2865 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0add0786c18d524.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Product Accountability Analyst,6.8.0,Ignored,,,,"Amber Prohaska,Amber Prohaska,Amber Prohaska",,Janessa (https://mitchell.com); Dena (https://jordyn.org); David (http://amir.org); Lorna (http://sylvia.net); Ada (https://abigail.name); Cloyd (http://ruby.com); Adah (https://mylene.name); Alvah (http://otha.name) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Product Creative Developer,7.2.5,Ignored,"If we input the pixel, we can get to the AGP pixel through the virtual AGP pixel!",,,,,William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org); Lawrence (http://keagan.name) +Legacy Assurance Consultant,1.7.0,Ignored,,,,"Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata,Miranda Cummerata",,Jevon (https://aron.name); Suzanne (http://ima.name); Earnestine (http://nathanial.biz); Connor (https://augustus.net); Araceli (http://hailey.biz) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0b88da63aeac954.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0b88da63aeac954.verified.txt new file mode 100644 index 00000000..aee46a19 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0b88da63aeac954.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0f31e9c3cdb11c4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0f31e9c3cdb11c4.verified.txt new file mode 100644 index 00000000..055cc89e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0f31e9c3cdb11c4.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1712d8c1eee6577.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1712d8c1eee6577.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1712d8c1eee6577.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b1558b0f02fed1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b1558b0f02fed1.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b1558b0f02fed1.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b28851232d4815.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b28851232d4815.verified.txt new file mode 100644 index 00000000..9ddc19ea --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b28851232d4815.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Senior Metrics Assistant,8.7.4,Ignored,,"Use the solid state IB interface, then you can override the solid state interface!","If we compress the panel, we can get to the HDD panel through the digital HDD panel!",,, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Regional Markets Architect,6.4.6,Ignored,,"I'll hack the haptic JSON matrix, that should matrix the JSON matrix!","generating the transmitter won't do anything, we need to copy the bluetooth COM transmitter!",,, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Global Security Liaison,6.1.8,Expression,,,,,, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Dynamic Tactics Supervisor,3.8.2,Ignored,,,,,, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Regional Optimization Strategist,4.9.4,Ignored,,,"I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth!",,, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Legacy Web Facilitator,4.4.3,Ignored,"Use the redundant AGP microchip, then you can override the redundant microchip!","Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,http://frederick.com, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Global Branding Manager,2.6.7,Ignored,"If we generate the panel, we can get to the SMTP panel through the online SMTP panel!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Customer Integration Agent,3.6.0,Ignored,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",You can't bypass the firewall without indexing the multi-byte COM firewall!,,http://helen.name, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Dynamic Marketing Consultant,8.6.3,Ignored,,You can't back up the protocol without indexing the neural SQL protocol!,"I'll transmit the multi-byte CSS pixel, that should pixel the CSS pixel!",,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Forward Web Developer,9.4.5,Ignored,"If we transmit the feed, we can get to the SDD feed through the wireless SDD feed!",,,,https://mikayla.com, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +District Accountability Consultant,5.4.8,Ignored,"synthesizing the application won't do anything, we need to synthesize the online CSS application!","If we quantify the bus, we can get to the SMS bus through the open-source SMS bus!",,,https://leola.org, +Dynamic Functionality Architect,8.0.1,Ignored,,,We need to connect the auxiliary HTTP protocol!,,http://sally.net, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Principal Implementation Developer,7.0.7,Ignored,,,"I'll parse the primary USB interface, that should interface the USB interface!",,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Senior Integration Assistant,6.4.2,Ignored,We need to hack the cross-platform USB circuit!,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Try to navigate the USB bus, maybe it will navigate the online bus!",,, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +Product Security Manager,3.4.7,Ignored,,,"I'll parse the primary XSS port, that should port the XSS port!",,http://shaun.biz, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1dd500611abf717.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1dd500611abf717.verified.txt new file mode 100644 index 00000000..3a687960 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1dd500611abf717.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d201d809b93bd437.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d201d809b93bd437.verified.txt new file mode 100644 index 00000000..ffff5c4c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d201d809b93bd437.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Markets Coordinator,3.4.4,Expression,,,,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d25295493746cb49.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d25295493746cb49.verified.txt new file mode 100644 index 00000000..b2fd4754 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d25295493746cb49.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d282261398dccfb1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d282261398dccfb1.verified.txt new file mode 100644 index 00000000..34061d4f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d282261398dccfb1.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Markets Coordinator,3.4.4,Expression,,,,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2d3fd8b136f4161.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2d3fd8b136f4161.verified.txt new file mode 100644 index 00000000..c568858c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2d3fd8b136f4161.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2ee8b534dacb490.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2ee8b534dacb490.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2ee8b534dacb490.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2fc33554fa326a5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2fc33554fa326a5.verified.txt new file mode 100644 index 00000000..ac5a92c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2fc33554fa326a5.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3a5a372198c5c80.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3a5a372198c5c80.verified.txt new file mode 100644 index 00000000..17d56a02 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3a5a372198c5c80.verified.txt @@ -0,0 +1,10 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3cd454a324c37df.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3cd454a324c37df.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3cd454a324c37df.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3d4cbcefd3ec02d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3d4cbcefd3ec02d.verified.txt new file mode 100644 index 00000000..9d5ac7b1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3d4cbcefd3ec02d.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d406c2e15094b037.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d406c2e15094b037.verified.txt new file mode 100644 index 00000000..b83cb36b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d406c2e15094b037.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4a07872f07eaca1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4a07872f07eaca1.verified.txt new file mode 100644 index 00000000..0cf3ceb6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4a07872f07eaca1.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4b36c7288bd5268.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4b36c7288bd5268.verified.txt new file mode 100644 index 00000000..656ef571 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4b36c7288bd5268.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4cb9d89826451c4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4cb9d89826451c4.verified.txt new file mode 100644 index 00000000..c3b9a57f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4cb9d89826451c4.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3064256c0fad4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3064256c0fad4.verified.txt new file mode 100644 index 00000000..c6ac31d1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3064256c0fad4.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3a1771b828648.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3a1771b828648.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3a1771b828648.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d6186ba22b836a8e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d6186ba22b836a8e.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d6186ba22b836a8e.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d70532054a5c31fd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d70532054a5c31fd.verified.txt new file mode 100644 index 00000000..e11edbc0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d70532054a5c31fd.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7684eaba9e2eb90.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7684eaba9e2eb90.verified.txt new file mode 100644 index 00000000..0cf3ceb6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7684eaba9e2eb90.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d773d0cf6ce5c64d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d773d0cf6ce5c64d.verified.txt new file mode 100644 index 00000000..e2a134a5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d773d0cf6ce5c64d.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7b73731705c9f38.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7b73731705c9f38.verified.txt new file mode 100644 index 00000000..0cf3ceb6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7b73731705c9f38.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7d5fd5aae356f2d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7d5fd5aae356f2d.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7d5fd5aae356f2d.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8aa3b7f90916617.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8aa3b7f90916617.verified.txt new file mode 100644 index 00000000..b845434a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8aa3b7f90916617.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Global Usability Officer,2.2.4,File,,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Human Implementation Producer,0.9.1,Url,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8f2b2ab4c95d02e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8f2b2ab4c95d02e.verified.txt new file mode 100644 index 00000000..875ec9ba --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8f2b2ab4c95d02e.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Markets Producer,8.7.1,Expression,,,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +International Data Associate,8.9.3,Ignored,,,,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Human Interactions Officer,9.4.9,Url,,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",,You can't override the capacitor without navigating the cross-platform FTP capacitor!,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +National Intranet Technician,8.0.0,Url,,,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Response Specialist,0.9.4,Ignored,,,We need to generate the online HDD matrix!,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Investor Identity Manager,7.9.5,Ignored,,,You can't index the microchip without backing up the back-end CSS microchip!,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Future Operations Assistant,9.9.1,Expression,,,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Product Branding Director,1.2.7,Ignored,,,,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Product Solutions Specialist,2.4.9,Expression,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9b6a02f6238686c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9b6a02f6238686c.verified.txt new file mode 100644 index 00000000..a78f74f0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9b6a02f6238686c.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9ebcd09d8246807.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9ebcd09d8246807.verified.txt new file mode 100644 index 00000000..6af1fbbc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9ebcd09d8246807.verified.txt @@ -0,0 +1,104 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Internal Marketing Executive,2.0.0,Url,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Product Web Strategist,3.5.8,Ignored,,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,https://anjali.name, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,,"If we copy the array, we can get to the SAS array through the neural SAS array!",,http://helen.name, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Usability Officer,2.2.4,File,,,,,, +Chief Response Strategist,8.0.4,Ignored,,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,,We need to input the neural SQL program!,,, +Regional Operations Analyst,7.0.8,Ignored,,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,http://rene.com, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Principal Optimization Technician,7.1.3,Url,,,,,, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Product Marketing Officer,6.2.8,Url,,,,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +Principal Intranet Manager,3.8.8,File,,,,,, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da4bf55576ee0857.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da4bf55576ee0857.verified.txt new file mode 100644 index 00000000..1ba7ab95 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da4bf55576ee0857.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da6072dbc738a10a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da6072dbc738a10a.verified.txt new file mode 100644 index 00000000..b46dd3b3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da6072dbc738a10a.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dac41c0f6824a0b3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dac41c0f6824a0b3.verified.txt new file mode 100644 index 00000000..7df12a8b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dac41c0f6824a0b3.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db2945d8aae3ae0d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db2945d8aae3ae0d.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db2945d8aae3ae0d.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db31dc93f763121b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db31dc93f763121b.verified.txt new file mode 100644 index 00000000..a2b83889 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db31dc93f763121b.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dc79b2d168af6334.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dc79b2d168af6334.verified.txt new file mode 100644 index 00000000..a2b83889 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dc79b2d168af6334.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dcae2e9ae312ab81.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dcae2e9ae312ab81.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dcae2e9ae312ab81.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dd1dc2606b4f5f54.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dd1dc2606b4f5f54.verified.txt new file mode 100644 index 00000000..87aa40a1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dd1dc2606b4f5f54.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de40fabb77675ff9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de40fabb77675ff9.verified.txt new file mode 100644 index 00000000..6946b890 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de40fabb77675ff9.verified.txt @@ -0,0 +1,105 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Dynamic Markets Producer,8.7.1,Expression,,,,,, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Human Interactions Officer,9.4.9,Url,,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +National Intranet Technician,8.0.0,Url,,,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Future Operations Assistant,9.9.1,Expression,,,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Product Solutions Specialist,2.4.9,Expression,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de7a042b98fe5d8b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de7a042b98fe5d8b.verified.txt new file mode 100644 index 00000000..054cb3f7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de7a042b98fe5d8b.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dfee49a2fc2d6e7b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dfee49a2fc2d6e7b.verified.txt new file mode 100644 index 00000000..3558f6f3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dfee49a2fc2d6e7b.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e02ca8e17d65555d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e02ca8e17d65555d.verified.txt new file mode 100644 index 00000000..44195e09 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e02ca8e17d65555d.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e0411e2164f267a4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e0411e2164f267a4.verified.txt new file mode 100644 index 00000000..7ee8a711 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e0411e2164f267a4.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e050b26febe47667.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e050b26febe47667.verified.txt new file mode 100644 index 00000000..2dce3c30 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e050b26febe47667.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e1ea4e506a3cf66d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e1ea4e506a3cf66d.verified.txt new file mode 100644 index 00000000..b97f56e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e1ea4e506a3cf66d.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2226d4c9abbfcca.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2226d4c9abbfcca.verified.txt new file mode 100644 index 00000000..315b0202 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2226d4c9abbfcca.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e249178e155c42d0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e249178e155c42d0.verified.txt new file mode 100644 index 00000000..a1a41ea9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e249178e155c42d0.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e260693e7cc22742.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e260693e7cc22742.verified.txt new file mode 100644 index 00000000..7bd2b0e2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e260693e7cc22742.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2a5e23935ae7d7d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2a5e23935ae7d7d.verified.txt new file mode 100644 index 00000000..315b0202 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2a5e23935ae7d7d.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4afa02b9d16a650.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4afa02b9d16a650.verified.txt new file mode 100644 index 00000000..d71f0d7f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4afa02b9d16a650.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4ebd6f24c105615.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4ebd6f24c105615.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4ebd6f24c105615.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e502607d55d38d63.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e502607d55d38d63.verified.txt new file mode 100644 index 00000000..10cf2f36 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e502607d55d38d63.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e53463bcbcd0245c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e53463bcbcd0245c.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e53463bcbcd0245c.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e5cae6002d9cad03.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e5cae6002d9cad03.verified.txt new file mode 100644 index 00000000..3524adde --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e5cae6002d9cad03.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e64f78edf846e96b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e64f78edf846e96b.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e64f78edf846e96b.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6535e3a79595975.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6535e3a79595975.verified.txt new file mode 100644 index 00000000..8c532d74 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6535e3a79595975.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e66274b528e6de37.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e66274b528e6de37.verified.txt new file mode 100644 index 00000000..01e1c6eb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e66274b528e6de37.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6c4d26cbe06e8d8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6c4d26cbe06e8d8.verified.txt new file mode 100644 index 00000000..c6ac31d1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6c4d26cbe06e8d8.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e74a7d6ece4d67df.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e74a7d6ece4d67df.verified.txt new file mode 100644 index 00000000..13489b6e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e74a7d6ece4d67df.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e7bf0db583943634.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e7bf0db583943634.verified.txt new file mode 100644 index 00000000..f6c889a9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e7bf0db583943634.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e8cef76650cfb997.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e8cef76650cfb997.verified.txt new file mode 100644 index 00000000..19902e1e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e8cef76650cfb997.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e916fdaff02f1c3c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e916fdaff02f1c3c.verified.txt new file mode 100644 index 00000000..d1c4f239 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e916fdaff02f1c3c.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9179afd5a83d905.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9179afd5a83d905.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9179afd5a83d905.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e95165215d69f470.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e95165215d69f470.verified.txt new file mode 100644 index 00000000..cd075292 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e95165215d69f470.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e98287dcb5497c87.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e98287dcb5497c87.verified.txt new file mode 100644 index 00000000..403aadb3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e98287dcb5497c87.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9f219a231e93fc0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9f219a231e93fc0.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9f219a231e93fc0.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea12f73dca297663.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea12f73dca297663.verified.txt new file mode 100644 index 00000000..d59572c3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea12f73dca297663.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea5c14a391646ca3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea5c14a391646ca3.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea5c14a391646ca3.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5283556accef3e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5283556accef3e.verified.txt new file mode 100644 index 00000000..eeb942df --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5283556accef3e.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Product Accountability Analyst,6.8.0,Ignored,,,"Try to input the SCSI system, maybe it will input the open-source system!",,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5f1537089e9820.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5f1537089e9820.verified.txt new file mode 100644 index 00000000..9a8a1621 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5f1537089e9820.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7ca9e103da3a43.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7ca9e103da3a43.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7ca9e103da3a43.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7e09b4bdcfaf24.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7e09b4bdcfaf24.verified.txt new file mode 100644 index 00000000..1ba7ab95 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7e09b4bdcfaf24.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!",,"Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!",,"Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!",,"The JBOD array is down, connect the solid state array so we can connect the JBOD array!","Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!",,"If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!",,"If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ebc65530ae7493ea.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ebc65530ae7493ea.verified.txt new file mode 100644 index 00000000..12da6c93 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ebc65530ae7493ea.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ec6fb72fec3a9b0d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ec6fb72fec3a9b0d.verified.txt new file mode 100644 index 00000000..6240139a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ec6fb72fec3a9b0d.verified.txt @@ -0,0 +1,106 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Legacy Response Specialist,0.9.4,Ignored,,,We need to generate the online HDD matrix!,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Human Interactions Officer,9.4.9,Url,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Investor Identity Manager,7.9.5,Ignored,,,You can't index the microchip without backing up the back-end CSS microchip!,,, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",,You can't override the capacitor without navigating the cross-platform FTP capacitor!,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +National Intranet Technician,8.0.0,Url,,,,,, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +International Data Associate,8.9.3,Ignored,,,,,, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Product Branding Director,1.2.7,Ignored,,,,,, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ef3ab5973b0f06de.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ef3ab5973b0f06de.verified.txt new file mode 100644 index 00000000..c91da3a7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ef3ab5973b0f06de.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0468ea252f673ab.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0468ea252f673ab.verified.txt new file mode 100644 index 00000000..5a2edb2b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0468ea252f673ab.verified.txt @@ -0,0 +1,41 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f079fc9ff3e8f97e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f079fc9ff3e8f97e.verified.txt new file mode 100644 index 00000000..a7799b6f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f079fc9ff3e8f97e.verified.txt @@ -0,0 +1,88 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Product Group Assistant,3.3.8,Expression,,,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Direct Factors Architect,9.0.4,File,,,,,, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Future Security Executive,1.1.3,Expression,,,,,, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Dynamic Group Consultant,5.8.4,File,,,,,, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0e2ed36efc20018.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0e2ed36efc20018.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0e2ed36efc20018.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1358642e55f5f51.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1358642e55f5f51.verified.txt new file mode 100644 index 00000000..db686de6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1358642e55f5f51.verified.txt @@ -0,0 +1,9 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Human Markets Coordinator,3.4.4,Expression,,,,,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f163c5af104e0c4d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f163c5af104e0c4d.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f163c5af104e0c4d.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f16d204121f144d0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f16d204121f144d0.verified.txt new file mode 100644 index 00000000..f24ae887 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f16d204121f144d0.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f190428a3524b87c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f190428a3524b87c.verified.txt new file mode 100644 index 00000000..d43e460d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f190428a3524b87c.verified.txt @@ -0,0 +1,99 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Central Quality Orchestrator,1.5.2,Expression,,,,,, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Internal Marketing Executive,2.0.0,Url,,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +Principal Intranet Manager,3.8.8,File,,,,,, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Human Implementation Producer,0.9.1,Url,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Group Consultant,5.8.4,File,,,,,, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Usability Officer,2.2.4,File,,,,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +International Marketing Officer,7.2.8,Unknown,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1ccdba334de44c7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1ccdba334de44c7.verified.txt new file mode 100644 index 00000000..2d3c26b3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1ccdba334de44c7.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Dynamic Data Director,3.0.6,Ignored,,"If we back up the monitor, we can get to the AI monitor through the optical AI monitor!",,"Shaun Ryan,Shaun Ryan,Shaun Ryan,Shaun Ryan",http://karli.biz, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Human Assurance Manager,3.0.6,Ignored,,,,"Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski",, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Direct Identity Analyst,4.1.1,Ignored,,We need to connect the mobile SCSI matrix!,,,, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +National Group Developer,6.2.0,Ignored,,,"If we calculate the hard drive, we can get to the CSS hard drive through the mobile CSS hard drive!","Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka",https://kane.net, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Internal Assurance Assistant,6.8.3,Ignored,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,"synthesizing the monitor won't do anything, we need to copy the 1080p PNG monitor!","Alan Price,Alan Price,Alan Price",, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!","Use the auxiliary PNG pixel, then you can navigate the auxiliary pixel!",,, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Direct Accountability Technician,3.5.8,Ignored,,,,,, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +District Functionality Architect,4.5.8,Ignored,,"I'll copy the solid state CSS port, that should port the CSS port!",,,, +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +Lead Metrics Associate,3.3.8,Ignored,,,,"Jeremy Robel,Jeremy Robel,Jeremy Robel",, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Dynamic Operations Technician,2.2.6,Ignored,You can't connect the port without connecting the back-end COM port!,,We need to quantify the optical GB feed!,,http://sandrine.com, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Customer Functionality Liaison,3.9.2,Ignored,,,,"Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic",https://lois.name, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Dynamic Tactics Administrator,7.8.4,Ignored,"I'll parse the primary XSS port, that should port the XSS port!","Try to parse the IB panel, maybe it will parse the bluetooth panel!","The SMS bandwidth is down, synthesize the digital bandwidth so we can synthesize the SMS bandwidth!",,http://edna.biz, +Legacy Group Architect,0.7.9,Ignored,"calculating the sensor won't do anything, we need to hack the primary JSON sensor!",You can't navigate the circuit without generating the back-end AI circuit!,,,https://burley.info, +Dynamic Operations Administrator,2.0.9,Ignored,,You can't generate the application without transmitting the redundant SAS application!,,"Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham",, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Global Communications Designer,0.6.3,File,,,,,, +Future Data Technician,2.5.1,Ignored,,,"I'll copy the auxiliary SQL array, that should array the SQL array!","Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan",, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Customer Applications Supervisor,9.0.5,Ignored,,"Use the online IB protocol, then you can back up the online protocol!",,,, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Internal Security Liaison,1.0.0,Ignored,,,"overriding the interface won't do anything, we need to override the virtual THX interface!",,http://kathryne.com, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1effbc7aa1da213.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1effbc7aa1da213.verified.txt new file mode 100644 index 00000000..e2a134a5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1effbc7aa1da213.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1fea66b709e0b39.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1fea66b709e0b39.verified.txt new file mode 100644 index 00000000..11ea582a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1fea66b709e0b39.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f22802f64a7a93e8.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f22802f64a7a93e8.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f22802f64a7a93e8.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2921e774bf62325.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2921e774bf62325.verified.txt new file mode 100644 index 00000000..8e1f45e0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2921e774bf62325.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f29b9888967b232b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f29b9888967b232b.verified.txt new file mode 100644 index 00000000..a95d374b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f29b9888967b232b.verified.txt @@ -0,0 +1,11 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2c3de5bbca4d7eb.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2c3de5bbca4d7eb.verified.txt new file mode 100644 index 00000000..c84702c5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2c3de5bbca4d7eb.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Chief Identity Designer,9.2.3,Expression,,,,,, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2f188b2fe1ff272.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2f188b2fe1ff272.verified.txt new file mode 100644 index 00000000..f5705eb8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2f188b2fe1ff272.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,"parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,,"Try to back up the ADP application, maybe it will back up the open-source application!",,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +District Quality Agent,9.6.8,File,,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3312266c737388c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3312266c737388c.verified.txt new file mode 100644 index 00000000..c829ea6e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3312266c737388c.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f346c9ef60b161c9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f346c9ef60b161c9.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f346c9ef60b161c9.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f35a0b605069ade0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f35a0b605069ade0.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f35a0b605069ade0.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f37853a3497c9f1b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f37853a3497c9f1b.verified.txt new file mode 100644 index 00000000..a93011dc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f37853a3497c9f1b.verified.txt @@ -0,0 +1,105 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Senior Division Liaison,7.1.3,Unknown,,,,,, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Chief Solutions Administrator,0.4.1,Overwrite,,,,,https://bertrand.biz,Gerard (https://soledad.org); Nolan (http://thora.info); Mia (http://olga.com); Myriam (http://lizeth.biz); Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz) +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Legacy Accountability Director,8.2.2,Url,,,,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Product Program Facilitator,7.3.5,File,,,,,, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, +Principal Identity Administrator,0.5.2,File,,,,,, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Investor Assurance Analyst,5.4.4,Expression,,,,,http://lazaro.org,Uriel (http://ignatius.info); Edgardo (http://laverna.com); Khalil (https://mona.org) +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Senior Quality Manager,6.5.4,Unknown,,,,,http://alda.com,Loraine (https://sandra.org); Emil (http://dayana.net); Leila (http://micah.info); Darien (http://ethel.info); Shakira (https://layne.org); Neoma (https://oliver.name); Clarabelle (https://vern.biz); Tristin (http://maximillia.org); Brown (http://giuseppe.name); Jett (https://randal.biz) +Corporate Accounts Facilitator,5.5.7,Overwrite,"If we back up the capacitor, we can get to the PNG capacitor through the wireless PNG capacitor!",,,,https://adaline.org,Amara (http://jenifer.name); Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com); Eric (https://micaela.net); Dorothy (http://helena.com) +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Internal Solutions Planner,1.3.8,Overwrite,,,,,,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +National Creative Facilitator,0.0.1,Url,,,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Investor Paradigm Officer,5.9.1,Unknown,"If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm!",,,,http://carmelo.org,Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org); Lynn (https://alek.name); Blaze (https://pablo.biz); Carlos (http://raphael.name); Heather (https://sabrina.com); Orville (http://guy.info); Benjamin (https://clementine.name) +Internal Program Liaison,8.2.1,Url,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!",,,,https://kathryne.name,Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org); Gussie (https://dejon.info); Isobel (https://pansy.com); Braeden (https://manuela.com) +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,,,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Senior Marketing Architect,1.7.9,File,,,,,, +Chief Identity Designer,9.2.3,Expression,,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +National Creative Engineer,4.0.0,Url,You can't parse the alarm without overriding the haptic SMTP alarm!,,,,,Nathanial (http://lucas.biz); Jackeline (http://emmitt.name); Amely (https://jonathon.com); Javonte (https://diana.name); Damien (https://edyth.com); Princess (http://haylie.biz); Jordane (https://gregorio.com); Opal (http://abbie.org); Pablo (https://maxime.biz) +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Chief Directives Manager,2.4.3,File,,,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +National Data Director,0.9.6,Unknown,,,,,, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +National Intranet Technician,8.0.0,Overwrite,,,,,, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Dynamic Integration Architect,1.6.3,File,,,,,, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Senior Marketing Orchestrator,9.1.5,Overwrite,,,,,,Dillon (https://maximillian.name); Halle (https://ramona.com); Jewel (http://golden.org) +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +Dynamic Tactics Developer,7.5.4,File,,,,,, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Dynamic Solutions Consultant,5.4.2,Url,,,,,http://harmon.net,Mitchel (http://carleton.name); Madalyn (http://narciso.net); Mia (http://nicklaus.net); Abelardo (http://carolina.name) +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Corporate Operations Executive,6.5.3,Overwrite,"If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,https://aron.name,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3ed6ef7b9bdc8f4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3ed6ef7b9bdc8f4.verified.txt new file mode 100644 index 00000000..0932a60c --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3ed6ef7b9bdc8f4.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f444979c7134b9a3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f444979c7134b9a3.verified.txt new file mode 100644 index 00000000..d00fc324 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f444979c7134b9a3.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +International Integration Orchestrator,5.8.3,Overwrite,"Use the primary AGP array, then you can connect the primary array!",,,,,Catherine (http://larry.biz); Luella (http://van.biz); Eugene (http://albina.net) +Central Accounts Facilitator,7.4.5,Url,,,,,http://melba.name,Wyman (http://guido.info); Reinhold (http://albertha.info); Robyn (https://eula.name); Rosanna (http://kian.org); Lia (https://manley.info); Bridget (https://alberta.info) +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f45aca6afe908089.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f45aca6afe908089.verified.txt new file mode 100644 index 00000000..d44afdf9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f45aca6afe908089.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +National Group Developer,6.2.0,Ignored,,,"If we calculate the hard drive, we can get to the CSS hard drive through the mobile CSS hard drive!","Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka",https://kane.net, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Human Assurance Manager,3.0.6,Ignored,,,,"Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski",, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Dynamic Operations Technician,2.2.6,Ignored,You can't connect the port without connecting the back-end COM port!,,We need to quantify the optical GB feed!,,http://sandrine.com, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +Future Data Technician,2.5.1,Ignored,,,"I'll copy the auxiliary SQL array, that should array the SQL array!","Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan",, +Customer Applications Supervisor,9.0.5,Ignored,,"Use the online IB protocol, then you can back up the online protocol!",,,, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Lead Metrics Associate,3.3.8,Ignored,,,,"Jeremy Robel,Jeremy Robel,Jeremy Robel",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Direct Identity Analyst,4.1.1,Ignored,,We need to connect the mobile SCSI matrix!,,,, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Dynamic Operations Administrator,2.0.9,Ignored,,You can't generate the application without transmitting the redundant SAS application!,,"Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham",, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!","Use the auxiliary PNG pixel, then you can navigate the auxiliary pixel!",,, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Dynamic Tactics Administrator,7.8.4,Ignored,"I'll parse the primary XSS port, that should port the XSS port!","Try to parse the IB panel, maybe it will parse the bluetooth panel!","The SMS bandwidth is down, synthesize the digital bandwidth so we can synthesize the SMS bandwidth!",,http://edna.biz, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Global Communications Designer,0.6.3,File,,,,,, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Internal Assurance Assistant,6.8.3,Ignored,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,"synthesizing the monitor won't do anything, we need to copy the 1080p PNG monitor!","Alan Price,Alan Price,Alan Price",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Customer Functionality Liaison,3.9.2,Ignored,,,,"Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic",https://lois.name, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Legacy Group Architect,0.7.9,Ignored,"calculating the sensor won't do anything, we need to hack the primary JSON sensor!",You can't navigate the circuit without generating the back-end AI circuit!,,,https://burley.info, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Internal Security Liaison,1.0.0,Ignored,,,"overriding the interface won't do anything, we need to override the virtual THX interface!",,http://kathryne.com, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Dynamic Data Director,3.0.6,Ignored,,"If we back up the monitor, we can get to the AI monitor through the optical AI monitor!",,"Shaun Ryan,Shaun Ryan,Shaun Ryan,Shaun Ryan",http://karli.biz, +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +District Functionality Architect,4.5.8,Ignored,,"I'll copy the solid state CSS port, that should port the CSS port!",,,, +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Direct Accountability Technician,3.5.8,Ignored,,,,,, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f4d29ad8a9c92d8e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f4d29ad8a9c92d8e.verified.txt new file mode 100644 index 00000000..61fb6346 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f4d29ad8a9c92d8e.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f5318452a5eccb8c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f5318452a5eccb8c.verified.txt new file mode 100644 index 00000000..a0c9f947 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f5318452a5eccb8c.verified.txt @@ -0,0 +1,121 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Product Security Manager,3.4.7,Ignored,,,"I'll parse the primary XSS port, that should port the XSS port!",,http://shaun.biz, +Customer Integration Agent,3.6.0,Ignored,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Dynamic Tactics Supervisor,3.8.2,Ignored,,,,,, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +Regional Optimization Strategist,4.9.4,Ignored,,,"I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth!",,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Global Security Liaison,6.1.8,Expression,,,,,, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Human Markets Coordinator,3.4.4,Expression,,,,,, +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +Regional Markets Architect,6.4.6,Ignored,,"I'll hack the haptic JSON matrix, that should matrix the JSON matrix!","generating the transmitter won't do anything, we need to copy the bluetooth COM transmitter!",,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Global Branding Manager,2.6.7,Ignored,"If we generate the panel, we can get to the SMTP panel through the online SMTP panel!",,,,, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +District Accountability Consultant,5.4.8,Ignored,"synthesizing the application won't do anything, we need to synthesize the online CSS application!","If we quantify the bus, we can get to the SMS bus through the open-source SMS bus!",,,https://leola.org, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",You can't bypass the firewall without indexing the multi-byte COM firewall!,,http://helen.name, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Principal Implementation Developer,7.0.7,Ignored,,,"I'll parse the primary USB interface, that should interface the USB interface!",,, +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +Senior Integration Assistant,6.4.2,Ignored,We need to hack the cross-platform USB circuit!,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Try to navigate the USB bus, maybe it will navigate the online bus!",,, +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +Legacy Web Facilitator,4.4.3,Ignored,"Use the redundant AGP microchip, then you can override the redundant microchip!","Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,http://frederick.com, +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Forward Web Developer,9.4.5,Ignored,"If we transmit the feed, we can get to the SDD feed through the wireless SDD feed!",,,,https://mikayla.com, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Senior Metrics Assistant,8.7.4,Ignored,,"Use the solid state IB interface, then you can override the solid state interface!","If we compress the panel, we can get to the HDD panel through the digital HDD panel!",,, +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Dynamic Marketing Consultant,8.6.3,Ignored,,You can't back up the protocol without indexing the neural SQL protocol!,"I'll transmit the multi-byte CSS pixel, that should pixel the CSS pixel!",,, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Dynamic Functionality Architect,8.0.1,Ignored,,,We need to connect the auxiliary HTTP protocol!,,http://sally.net, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f86049b152d4d170.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f86049b152d4d170.verified.txt new file mode 100644 index 00000000..eac3761b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f86049b152d4d170.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Global Usability Officer,2.2.4,File,,,,,, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8662f5c433c8524.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8662f5c433c8524.verified.txt new file mode 100644 index 00000000..91c9e527 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8662f5c433c8524.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8e7ea208cb9f856.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8e7ea208cb9f856.verified.txt new file mode 100644 index 00000000..ba933852 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8e7ea208cb9f856.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8ec9fce6dfe4873.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8ec9fce6dfe4873.verified.txt new file mode 100644 index 00000000..ee863ed6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8ec9fce6dfe4873.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f91068b6b2377193.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f91068b6b2377193.verified.txt new file mode 100644 index 00000000..53c876e0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f91068b6b2377193.verified.txt @@ -0,0 +1,102 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Principal Configuration Developer,6.2.9,Ignored,"If we calculate the program, we can get to the RAM program through the optical RAM program!",,,,, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Product Group Assistant,3.3.8,Expression,,,,,, +Dynamic Markets Supervisor,4.6.5,Ignored,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!",,,"Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Internal Applications Analyst,4.0.2,Ignored,,,,,, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Corporate Response Administrator,3.4.2,Ignored,,,,"Colleen Satterfield,Colleen Satterfield",https://veronica.biz, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Senior Research Liaison,5.0.6,Ignored,"If we compress the system, we can get to the AGP system through the multi-byte AGP system!",,,"Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson",http://clair.biz, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Legacy Communications Manager,0.1.8,Ignored,,,,,http://gus.info, +Legacy Data Representative,6.8.8,Ignored,You can't input the firewall without backing up the online USB firewall!,,,"Inez Larson,Inez Larson,Inez Larson",, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Dynamic Group Consultant,5.8.4,File,,,,,, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Future Security Executive,1.1.3,Expression,,,,,, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Central Identity Specialist,6.5.9,Ignored,,,,,, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +International Creative Technician,6.9.7,Ignored,,,,,http://arne.org, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Dynamic Communications Director,5.7.8,Ignored,,,,,https://hugh.org, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Direct Factors Architect,9.0.4,File,,,,,, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +Direct Communications Analyst,0.1.6,Ignored,We need to synthesize the redundant TCP system!,,,"Darrin Wyman,Darrin Wyman",, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Forward Factors Architect,5.5.8,Ignored,,,,"Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein",http://marianne.info, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f9734b5534d5af9c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f9734b5534d5af9c.verified.txt new file mode 100644 index 00000000..0a0d419d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f9734b5534d5af9c.verified.txt @@ -0,0 +1,35 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Global Communications Designer,0.6.3,File,,,,,, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f97f7612040b7f18.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f97f7612040b7f18.verified.txt new file mode 100644 index 00000000..ed7b300a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f97f7612040b7f18.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb4aae8d13fc4bee.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb4aae8d13fc4bee.verified.txt new file mode 100644 index 00000000..9c91c391 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb4aae8d13fc4bee.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Legacy Integration Manager,7.0.8,Overwrite,,,,,,Alvina (http://elouise.name); Ron (http://brown.org); Cordia (http://ericka.name); Eugene (http://rashad.info) +Legacy Usability Coordinator,5.8.8,Overwrite,"Try to calculate the PNG port, maybe it will calculate the back-end port!",,,,http://thora.info,Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name); Tyrel (https://felicity.biz); Buddy (https://bernardo.name); Josephine (http://jevon.name); Aron (https://suzanne.com); Ima (https://earnestine.info) +Internal Program Supervisor,9.7.5,Url,,"Use the wireless USB bandwidth, then you can input the wireless bandwidth!",,,,Rashad (https://vesta.com); Deja (https://randi.com); Eryn (https://adeline.info); Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info) +Regional Assurance Engineer,3.4.9,File,We need to bypass the back-end HTTP capacitor!,"Try to back up the ADP application, maybe it will back up the open-source application!",,,http://braeden.org,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Legacy Research Officer,0.5.1,Ignored,,,,,http://van.biz,Gaylord (https://bret.org); Jewell (https://khalil.com); Aiyana (http://uriel.com); Ignatius (http://edgardo.biz); Laverna (http://khalil.org); Mona (https://erling.net); Dusty (http://ali.com); Andrew (https://immanuel.net); Juana (http://maeve.org); Alysha (https://sydnee.com) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Customer Branding Specialist,9.2.0,Ignored,,,,,,Rigoberto (https://lou.biz); Darlene (http://oliver.org); Filomena (http://vincenzo.org); Ulices (http://florida.biz); Jovan (https://ari.org); Chad (http://yvonne.biz) +Product Accountability Analyst,6.8.0,Ignored,,"Try to input the SCSI system, maybe it will input the open-source system!",,,,Korbin (https://fern.net); Rick (http://aiyana.info); Maverick (http://eric.org); Micaela (https://dorothy.biz); Helena (http://myrtle.org); Everett (https://dominic.biz); Jessika (http://lesly.com); Clemens (https://abagail.info); Franz (http://prudence.info) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +District Quality Agent,9.6.8,File,,"Use the virtual GB monitor, then you can navigate the virtual monitor!",,,,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +Corporate Creative Consultant,4.2.7,Overwrite,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Marianne (https://colin.org); Billie (http://brielle.name); Brennon (https://myriam.org); Rosemary (https://tillman.net); Lazaro (http://fritz.biz); Josue (http://gaylord.com); Clyde (http://willie.biz); Savanna (https://aubree.net); Allen (https://adan.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Chief Brand Associate,7.6.8,Url,,,,,https://lauriane.com,Isabella (https://kennith.com); Johanna (https://ara.org); Demarco (https://rae.biz); Viviane (http://christine.info); Thora (https://corene.name); Mireya (https://mitchell.net); Marietta (http://adrian.org) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Corporate Intranet Associate,1.6.0,Url,,,,,,Amir (https://lorna.info); Sylvia (https://ada.net); Abigail (https://cloyd.biz) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb95d69df6f962d3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb95d69df6f962d3.verified.txt new file mode 100644 index 00000000..1e6e8dcc --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb95d69df6f962d3.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Consultant,2.6.0,Unknown,"Use the bluetooth TCP monitor, then you can transmit the bluetooth monitor!",,,,https://alia.org,Lavonne (http://kaitlyn.com); Osborne (https://joesph.name); Michael (https://kali.com) +National Interactions Associate,5.3.2,Unknown,"Use the 1080p CSS alarm, then you can reboot the 1080p alarm!",,,,,Cristian (https://crawford.name); Joseph (https://doug.net); Abner (https://nikki.org); Gail (https://maverick.org) +Forward Applications Engineer,7.5.6,Url,"Use the solid state XML bus, then you can transmit the solid state bus!","The JBOD array is down, connect the solid state array so we can connect the JBOD array!",,"Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas,Kristi Douglas",https://mayra.info,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Internal Program Liaison,8.2.1,File,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,"Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn,Beulah McGlynn",,Jairo (http://juanita.biz); Holly (https://rosemarie.net); Lysanne (http://adalberto.net); Sister (http://gerald.org); Vidal (http://lucio.info); Clemmie (http://hailee.biz); Rashad (https://rafaela.com); Camila (http://tyrique.com); Lauretta (https://carter.net) +Future Implementation Designer,5.0.4,Overwrite,"generating the system won't do anything, we need to synthesize the haptic SMTP system!",,,,http://ruben.name,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",,"Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Investor Group Designer,5.6.4,Overwrite,,,,,,Avis (https://virginia.name); Luis (http://karianne.biz); Broderick (https://virgie.org) +Regional Division Consultant,8.7.6,Overwrite,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Rebecca (http://melba.com); Millie (http://marc.net); Leanna (http://dejon.biz); Adella (http://ezequiel.org); Brooke (http://angus.com); Susanna (https://rosalia.org); Tanner (https://lilian.com); Cheyanne (http://lance.org); Ona (https://cyrus.name); Marion (http://naomi.info) +Legacy Operations Associate,4.6.2,Overwrite,,We need to index the open-source ADP feed!,,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) +Human Accounts Executive,7.6.7,Expression,"Use the auxiliary PNG interface, then you can generate the auxiliary interface!",,,"Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty,Cecelia Beatty",http://kristin.net,Danielle (https://effie.com); Bernardo (https://ronny.info); Lavinia (https://janessa.net); Mitchell (http://dena.net) +International Assurance Architect,8.5.5,Expression,,,,,http://beulah.biz,Kiara (https://jerel.name); Ethyl (http://hosea.org); Roderick (http://oleta.info); Maggie (http://colin.biz); Wellington (http://gino.biz); Emery (https://willa.net); Joanie (https://yadira.name); Barry (https://vladimir.com); Nannie (https://brenden.com) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +National Division Agent,5.1.4,Overwrite,,,,"Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn,Evan Hahn",http://ima.net,Elian (http://joey.name); William (http://desmond.info); Teagan (https://ernesto.biz); Vena (https://stephania.org); Maida (https://caitlyn.org); Elaina (http://rodolfo.org); Jada (https://flossie.org) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Principal Paradigm Manager,0.1.4,Url,"Use the online SMTP bus, then you can program the online bus!","Try to synthesize the SAS pixel, maybe it will synthesize the neural pixel!",,,,Domenic (https://darrel.biz); Antonette (https://maximilian.com); Einar (https://esteban.name); Martine (http://freeda.net) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!","Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!",,"Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Global Accountability Manager,0.0.9,Overwrite,,"If we back up the bus, we can get to the HDD bus through the digital HDD bus!",,,http://sylvia.net,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +Chief Solutions Administrator,0.4.1,Overwrite,,"indexing the program won't do anything, we need to reboot the virtual XSS program!",,"Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze,Winston Kunze",https://bertrand.biz,Reta (http://gianni.info); Desmond (http://mary.biz); Alvina (http://elouise.name) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1a4181730e7429.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1a4181730e7429.verified.txt new file mode 100644 index 00000000..01a6496b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1a4181730e7429.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1acc8b48f32728.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1acc8b48f32728.verified.txt new file mode 100644 index 00000000..15e58364 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1acc8b48f32728.verified.txt @@ -0,0 +1,24 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Chief Directives Manager,2.4.3,File,,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Chief Identity Designer,9.2.3,Expression,,,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Wilson (https://guadalupe.com); Otho (http://general.net); Skylar (https://haylie.biz); Audreanne (http://graciela.net); Maddison (http://randy.net); Dereck (http://cara.info); Dawson (http://addie.org); Xander (https://everette.info); Otha (https://cletus.net) +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Corporate Factors Architect,4.7.7,Overwrite,"If we input the panel, we can get to the COM panel through the optical COM panel!",,,,,Catalina (http://jolie.com); Dianna (https://leda.net); Nicola (http://aleen.name) +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +Legacy Applications Engineer,6.2.2,Unknown,"If we hack the bandwidth, we can get to the AI bandwidth through the redundant AI bandwidth!",,,,http://cynthia.name,Tessie (http://adelbert.net); Zoe (http://clare.net); Bobby (http://cecil.name); Kira (https://makenzie.com) +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc33440a9759dcf5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc33440a9759dcf5.verified.txt new file mode 100644 index 00000000..908d185b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc33440a9759dcf5.verified.txt @@ -0,0 +1,7 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +International Accounts Facilitator,2.7.8,Unknown,"If we index the hard drive, we can get to the SMS hard drive through the open-source SMS hard drive!",,"Try to hack the TCP circuit, maybe it will hack the auxiliary circuit!","Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner,Gregg Turner",https://dusty.net,Shany (http://margaretta.net); Ezra (https://maegan.net); Rollin (https://timothy.info) +Lead Markets Developer,2.6.5,Url,We need to program the digital HTTP sensor!,,,"Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette,Patricia Goyette",http://dean.name,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) +Forward Branding Associate,7.6.4,File,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!",,"Use the 1080p SMS driver, then you can generate the 1080p driver!","Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen,Ernesto Friesen",,Guido (http://reinhold.biz); Albertha (http://robyn.net); Eula (https://rosanna.com); Kian (https://lia.net); Manley (http://bridget.name) +Legacy Operations Associate,4.6.2,Overwrite,,,We need to index the open-source ADP feed!,,http://reanna.biz,Rupert (http://clint.com); Olaf (http://jadon.org); Amelia (http://toni.com); Angie (https://ardella.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6a5e7c9378cf96.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6a5e7c9378cf96.verified.txt new file mode 100644 index 00000000..f8068a68 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6a5e7c9378cf96.verified.txt @@ -0,0 +1,15 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Global Program Agent,3.4.4,Overwrite,,,,"Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp,Stacy Koepp",http://kadin.com,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Dynamic Directives Assistant,7.4.2,File,"The PCI firewall is down, reboot the multi-byte firewall so we can reboot the PCI firewall!",,,"Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly,Myrtle O'Reilly",https://marlene.name,Alec (https://lamar.info); Deion (https://darlene.info); Reyna (http://muriel.org); Celestine (https://jordon.info) +Central Quality Manager,0.3.3,Unknown,We need to back up the virtual GB array!,,,"Pamela Bernier,Pamela Bernier,Pamela Bernier,Pamela Bernier",https://alek.com,Sheila (https://lavada.org); Jaida (https://ryder.info); Fatima (https://christiana.info); Kayleigh (https://rhea.name); Caden (http://mervin.org); Elisa (http://sylvester.org); Adonis (https://francis.biz); Jaunita (http://elliott.net); Vicky (https://alayna.com); Adrain (https://ahmad.name) +International Implementation Engineer,9.7.5,Overwrite,,,,,,Anna (http://madeline.biz); Kieran (http://reanna.biz); Buck (https://christine.info); Demarco (https://marge.info); Astrid (https://charlene.com); Rod (https://marian.net); Claude (https://zechariah.biz) +Investor Division Supervisor,4.1.2,Expression,,,,Rickey Wintheiser,,Ashton (http://gina.name); Dena (http://oren.org); Helena (http://cassandra.com); Vladimir (http://rafael.name); August (http://evelyn.name); Letha (https://grant.info); Oceane (https://patricia.name); Donna (https://kaylie.info); Kariane (https://athena.name) +International Factors Liaison,3.3.5,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,,https://randal.biz,Hilton (http://shany.info); Margaretta (https://ezra.org); Maegan (https://rollin.org); Timothy (http://ezekiel.info); Peyton (http://marlen.com); Tara (https://alia.org) +Dynamic Intranet Supervisor,6.1.7,Expression,"Use the 1080p ADP panel, then you can transmit the 1080p panel!",,,,http://carlos.biz,Clementine (https://brock.net); Sabina (https://kaylie.net); Kurtis (https://adaline.org); Norberto (http://norval.net); Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name) +Central Web Consultant,6.5.6,File,,,,"Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer,Emma Mayer",,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) +National Division Agent,5.1.4,Expression,,,,,http://ima.net,Mona (http://grover.info); Neil (https://burley.info); Lemuel (http://brenden.info); Agnes (https://urban.org); Micheal (https://ida.net); Murray (https://samanta.com); Assunta (http://florencio.com); Bradford (http://marcella.biz); Ray (https://gunnar.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Senior Identity Agent,1.6.8,Url,"I'll connect the bluetooth THX bandwidth, that should bandwidth the THX bandwidth!",,,,,Dayana (https://leila.info); Micah (http://darien.com); Ethel (http://shakira.net); Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz) +Legacy Assurance Manager,8.3.1,File,"Try to reboot the RSS program, maybe it will reboot the solid state program!",,,,,Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6ce769c2298173.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6ce769c2298173.verified.txt new file mode 100644 index 00000000..6471a748 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6ce769c2298173.verified.txt @@ -0,0 +1,26 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +National Division Agent,5.1.4,Ignored,,,"The GB hard drive is down, generate the bluetooth hard drive so we can generate the GB hard drive!",,http://ima.net,Brenden (http://agnes.net); Urban (https://micheal.name); Ida (https://murray.org) +Future Integration Specialist,7.9.3,Overwrite,"I'll generate the virtual XSS program, that should program the XSS program!","If we override the matrix, we can get to the JSON matrix through the digital JSON matrix!",,,,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Direct Research Strategist,6.1.0,Url,"I'll compress the haptic SDD system, that should system the SDD system!",,"If we index the hard drive, we can get to the AGP hard drive through the mobile AGP hard drive!",,,Darlene (http://reyna.com); Muriel (https://celestine.net); Jordon (http://keith.name); Eduardo (https://corbin.com); Jeramie (http://coty.net); Claude (http://johan.name); Alva (https://morris.net); Arden (https://michael.com); Adrain (http://keagan.name); Hyman (https://virgie.name) +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Direct Optimization Specialist,4.8.4,File,"The EXE card is down, navigate the optical card so we can navigate the EXE card!",,"Use the wireless PCI program, then you can back up the wireless program!",,,Layne (https://neoma.org); Oliver (https://clarabelle.net); Vern (http://tristin.biz); Maximillia (https://brown.info); Giuseppe (https://jett.org); Randal (http://leif.biz); Chaz (https://tristian.com); Susie (http://carmelo.org) +Dynamic Functionality Planner,2.8.2,Unknown,We need to index the open-source ADP feed!,,We need to synthesize the optical TCP feed!,,,Amelia (http://toni.com); Angie (https://ardella.info); Melissa (https://sandra.biz); Pearline (https://noble.net); Dusty (https://verlie.com); Maryjane (http://lessie.name); Hayden (https://ernestine.com); Amina (http://steve.com); Lon (https://braeden.net); Sunny (https://leslie.com) +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Forward Branding Associate,7.6.4,Ignored,"If we compress the panel, we can get to the GB panel through the auxiliary GB panel!","Use the 1080p SMS driver, then you can generate the 1080p driver!",You can't transmit the port without overriding the wireless AGP port!,,,Albin (http://hal.com); Betsy (http://quinton.com); Emmalee (https://haleigh.name); Annabell (http://meghan.info); Horace (http://tessie.com); Adelbert (https://zoe.com); Clare (https://bobby.info); Cecil (https://kira.net); Makenzie (http://jedediah.net); Rudolph (https://jeff.name) +Human Accountability Consultant,0.9.4,Url,"Try to back up the THX capacitor, maybe it will back up the open-source capacitor!",,"I'll parse the wireless SAS driver, that should driver the SAS driver!",,http://olga.com,Jordi (https://alysha.com); Kristina (https://pattie.info); Cory (http://kailey.com); Leatha (https://felix.name); Lucious (http://junior.org); Alene (http://laurel.biz); Giuseppe (https://dangelo.biz); Nicole (http://reta.com); Gianni (http://desmond.info); Mary (http://alvina.biz) +Internal Solutions Planner,1.3.8,Expression,,"The COM application is down, quantify the auxiliary application so we can quantify the COM application!","The PNG protocol is down, navigate the primary protocol so we can navigate the PNG protocol!",,,Adaline (http://brittany.org); Margie (http://eda.com); Vena (https://vincenzo.biz); Jedediah (http://teagan.net); Piper (http://vicky.info); Norwood (https://gerard.name) +Human Security Executive,2.3.1,Url,,We need to copy the wireless SAS matrix!,"The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol!",,,Lavon (https://irma.com); Precious (http://bertha.net); Kaya (http://fredy.name); Kailyn (https://eunice.biz); Jace (https://kayla.biz); Dolly (https://leonard.org); Stephany (https://kacey.com); Saul (http://audreanne.org); Tyreek (http://kendra.info); Sunny (https://haskell.name) +Corporate Creative Consultant,4.2.7,Ignored,"Try to calculate the HDD capacitor, maybe it will calculate the multi-byte capacitor!","parsing the capacitor won't do anything, we need to override the bluetooth XML capacitor!",,,https://kathryne.name,Roy (https://johanna.org); Price (https://itzel.info); Dalton (https://daren.info); Arnold (http://arlo.org); Chelsie (https://kaylin.com); Queen (http://marvin.com); Taya (http://micaela.biz); Evert (http://tomas.net) +Customer Communications Architect,0.4.1,Url,,,"If we calculate the alarm, we can get to the SDD alarm through the wireless SDD alarm!",,,Justice (https://aric.info); Will (http://ruben.name); Zion (https://madison.name); Leland (http://michale.info) +Human Markets Coordinator,3.4.4,Expression,,,,,, +Product Intranet Facilitator,0.1.8,Url,,,"Try to bypass the TCP capacitor, maybe it will bypass the neural capacitor!",,,Shanny (https://hildegard.com); Conner (https://isabella.name); Kennith (http://johanna.name); Ara (https://demarco.net); Rae (http://viviane.info) +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Chief Identity Developer,6.3.9,Url,"Use the cross-platform SAS card, then you can index the cross-platform card!","Try to back up the AI card, maybe it will back up the cross-platform card!",,,,Jon (https://gabriella.biz); Jevon (https://deja.com); Clementina (http://jayson.org); Casimer (https://kendall.name); Abe (http://neoma.com); Catherine (http://larry.biz); Luella (http://van.biz) +National Functionality Supervisor,6.6.7,Unknown,"If we hack the pixel, we can get to the HDD pixel through the mobile HDD pixel!","Use the multi-byte SAS driver, then you can bypass the multi-byte driver!","If we quantify the microchip, we can get to the ADP microchip through the online ADP microchip!",,https://jamal.info,Juana (http://maeve.org); Alysha (https://sydnee.com); Merle (http://delta.org); Missouri (https://doris.com); Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com); Noemie (https://anna.info) +Global Research Agent,4.2.6,Expression,,,You can't calculate the circuit without copying the neural SMTP circuit!,,http://orland.info,Raphael (https://heather.net); Sabrina (http://orville.com); Guy (http://benjamin.name); Clementine (https://brock.net); Sabina (https://kaylie.net) +Dynamic Markets Representative,5.2.6,File,We need to reboot the solid state TCP feed!,"Use the online SAS firewall, then you can calculate the online firewall!",,,https://mitchell.net,Rhoda (https://selena.info); Selmer (https://jairo.info); Juanita (http://holly.name); Rosemarie (https://lysanne.com); Adalberto (https://sister.biz); Gerald (https://vidal.com); Lucio (http://clemmie.info); Hailee (http://rashad.org); Rafaela (http://camila.com); Tyrique (http://lauretta.name) +District Mobility Analyst,2.3.7,File,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Bert (http://pamela.name); Keenan (http://merritt.name); Tobin (https://polly.name) +Customer Operations Supervisor,8.7.0,Unknown,,"synthesizing the driver won't do anything, we need to back up the haptic HDD driver!",,,https://noemie.org,Eusebio (https://drew.net); Imani (https://dorothea.name); Justina (http://norwood.info); Aubree (http://jayne.info); Jude (https://korbin.org); Fern (https://rick.com); Aiyana (http://maverick.com) +National Metrics Developer,7.2.1,Url,,"I'll connect the optical FTP program, that should program the FTP program!",,,,Jerrod (http://laila.com); Caleigh (https://adolfo.com); Daisha (http://justine.biz); Americo (http://tessie.org); Howard (https://luis.info); Matt (https://blake.biz); Quincy (https://sandra.biz); Antonina (http://willow.name); Jason (https://orland.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc71da1ff4603267.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc71da1ff4603267.verified.txt new file mode 100644 index 00000000..de174f3e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc71da1ff4603267.verified.txt @@ -0,0 +1,3 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd8fe6e3bbbf0187.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd8fe6e3bbbf0187.verified.txt new file mode 100644 index 00000000..390d122a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd8fe6e3bbbf0187.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Principal Functionality Agent,1.5.3,Url,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz); Marina (http://tre.info); Isac (https://minerva.info); Mariam (http://khalil.org); Myles (http://nikko.name); Rolando (http://nikko.name) +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd950cc8aee53a91.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd950cc8aee53a91.verified.txt new file mode 100644 index 00000000..bec85c70 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd950cc8aee53a91.verified.txt @@ -0,0 +1,4 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Marketing Representative,4.4.7,Expression,"synthesizing the alarm won't do anything, we need to program the back-end USB alarm!",,,,http://mariam.com,Michele (https://miles.net); Freddie (http://kade.net); Jaunita (http://marcelina.biz); Donna (https://darby.biz); Joana (https://albin.info) +Regional Solutions Executive,1.8.0,Expression,You can't connect the feed without backing up the primary XML feed!,,,,,Paula (http://heidi.biz); Letha (https://reid.name); Amely (http://nikki.org); Mckayla (http://kiara.org) +National Assurance Orchestrator,3.9.1,Unknown,,,,,https://pietro.info,Mckenna (http://ladarius.org); Adrianna (https://ursula.name); Monty (https://fabiola.com); Lyric (http://gene.net); Dale (https://jon.org); Gabriella (http://jevon.name); Deja (http://clementina.info); Jayson (https://casimer.name); Kendall (https://abe.biz) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef1283356ba29a3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef1283356ba29a3.verified.txt new file mode 100644 index 00000000..3a0ccadb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef1283356ba29a3.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Customer Division Producer,6.2.7,Overwrite,"parsing the card won't do anything, we need to back up the back-end PNG card!",,,,,Lysanne (http://ebony.org); Haven (http://alice.org); Marilie (http://roberto.name) +Principal Functionality Agent,1.5.3,Expression,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,"Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson,Elena Jacobson",,Carmelo (http://michele.name); Miles (https://freddie.com); Kade (https://jaunita.biz); Marcelina (http://donna.net); Darby (http://joana.org); Albin (http://hal.com); Betsy (http://quinton.com) +Regional Division Consultant,8.7.6,File,"Use the haptic FTP bandwidth, then you can quantify the haptic bandwidth!","If we program the sensor, we can get to the JSON sensor through the redundant JSON sensor!",,,,Gretchen (https://boris.net); Ilene (https://richmond.name); Brionna (http://dakota.com); Anabel (http://velda.com); Cara (http://aleen.org); Maybell (https://zechariah.org); Millie (https://aurelio.biz); Bernard (https://sylvan.net); Kirk (http://johann.net) +Lead Functionality Specialist,8.5.7,Overwrite,,"Try to navigate the RAM card, maybe it will navigate the neural card!","Use the cross-platform JBOD system, then you can reboot the cross-platform system!","Tommie Monahan,Tommie Monahan,Tommie Monahan",,Lily (http://shemar.biz); Ivy (http://laury.net); Cortney (https://breanna.name); Assunta (http://miller.info); Annabel (https://ashton.biz); Gina (https://dena.info); Oren (https://helena.biz); Cassandra (http://vladimir.info); Rafael (https://august.biz); Evelyn (https://letha.org) +Dynamic Integration Associate,8.7.4,Unknown,,"I'll hack the online GB bandwidth, that should bandwidth the GB bandwidth!",,,,Bradford (http://marcella.biz); Ray (https://gunnar.org); Elissa (https://maud.net); Edgar (https://angelina.name) +Dynamic Brand Officer,1.2.6,Overwrite,,,"The HTTP card is down, generate the virtual card so we can generate the HTTP card!","Andres Hauck,Andres Hauck",,Crystel (https://alec.name); Delphia (http://lila.org); Lorena (https://jamie.net); Shaylee (https://laney.biz); Abraham (http://devan.net); Damaris (https://arlie.org); Imelda (https://kyra.com); Winifred (http://elmer.com); Adolphus (https://summer.info); Gregg (https://kole.name) +Regional Security Engineer,4.3.5,Overwrite,"navigating the feed won't do anything, we need to back up the auxiliary RAM feed!",,"The SMS system is down, back up the open-source system so we can back up the SMS system!","Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover,Erick Glover",https://zackery.info,Ettie (http://lonny.net); Onie (https://cassie.biz); Solon (https://buck.biz) +National Markets Designer,5.9.8,Overwrite,"Try to reboot the CSS panel, maybe it will reboot the haptic panel!",,,"Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic,Rogelio Kuhic",,Noemie (https://agustina.name); Palma (https://karina.net); Aletha (http://gene.name); Ed (https://jazmin.net); Shyanne (http://geovanny.info); Josephine (http://seamus.biz); Maybell (http://monserrat.biz); Katrine (https://abel.net) +Investor Program Strategist,8.2.0,Expression,"If we back up the microchip, we can get to the COM microchip through the solid state COM microchip!","Try to transmit the SAS alarm, maybe it will transmit the primary alarm!","I'll back up the open-source COM transmitter, that should transmitter the COM transmitter!",Carrie Schneider,,Pascale (https://michel.info); Kamron (http://zelma.info); Ines (http://corine.info); Elroy (https://yasmeen.name); Thora (https://shaylee.com); Jerald (https://ethyl.name); Kelley (https://rory.org); Alan (https://gracie.org); Jerrod (https://sylvia.info); Catharine (https://kale.info) +International Intranet Planner,1.3.4,Overwrite,You can't quantify the system without generating the digital HTTP system!,We need to compress the haptic XML circuit!,"indexing the microchip won't do anything, we need to index the mobile AGP microchip!","Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert,Arturo Reichert",http://devin.org,Jaiden (http://patience.name); Marlene (https://lenna.net); Franco (https://kyleigh.name); Tevin (https://sallie.net); Jordane (https://willy.org); Daija (http://jannie.net); Retta (https://lottie.biz); Yasmine (http://delia.com); Khalil (http://jewel.net) +Principal Quality Planner,4.9.8,Overwrite,"If we input the driver, we can get to the AI driver through the optical AI driver!",You can't transmit the interface without overriding the mobile AGP interface!,,"Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin,Ira Larkin",,Braxton (http://flavio.net); Jeramie (http://jaycee.net); Dillon (https://waylon.info); Oscar (https://kadin.com); Gerardo (https://william.name); Haskell (http://libby.com); Madisen (http://raegan.biz); Cathy (http://giovanna.info) +Internal Configuration Analyst,9.8.6,Expression,,,We need to parse the primary PCI protocol!,,,Virginie (https://carlee.com); Britney (https://tess.com); Julian (http://isadore.biz); Billy (https://alice.biz) +Regional Mobility Administrator,7.7.4,Overwrite,,,,,https://jovanny.name,Beverly (https://mertie.biz); Aaliyah (https://kiara.name); Jerel (https://ethyl.info) +Legacy Operations Associate,4.6.2,Unknown,,We need to index the open-source ADP feed!,,Jake Schaden,http://reanna.biz,Jermey (http://wilfrid.name); Josianne (https://vivian.biz); Gertrude (http://renee.name); Gabrielle (https://jedediah.biz); Amber (http://evalyn.org); Myrtis (https://ursula.net); Werner (https://linwood.biz); Rebekah (https://cleve.org); Claudie (https://theodora.com) +District Creative Assistant,2.7.4,Expression,You can't parse the matrix without copying the digital AI matrix!,"Use the mobile PNG bandwidth, then you can parse the mobile bandwidth!",We need to parse the multi-byte USB protocol!,,http://colin.biz,Dustin (https://joyce.net); Jada (http://rosa.org); Kristopher (http://regan.net); Jodie (https://marcel.net); Allison (https://jacynthe.org); Mylene (https://ella.name) +National Interactions Administrator,5.0.0,Unknown,"If we override the driver, we can get to the TCP driver through the 1080p TCP driver!","If we transmit the hard drive, we can get to the ADP hard drive through the digital ADP hard drive!","If we connect the feed, we can get to the XML feed through the 1080p XML feed!","Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski,Johnathan Mosciski",http://horace.com,Albina (https://leann.net); Johnny (https://jamal.info); Rodger (http://lazaro.org); Gaylord (https://bret.org); Jewell (https://khalil.com) +Chief Data Director,2.1.5,Url,"Use the haptic PCI bandwidth, then you can generate the haptic bandwidth!","If we input the interface, we can get to the ADP interface through the multi-byte ADP interface!",,,,Mary (http://alvina.biz); Elouise (https://ron.com); Brown (https://cordia.com); Ericka (https://eugene.com); Rashad (http://thomas.com); Antonia (https://marcelle.org) +District Mobility Analyst,2.3.7,Ignored,"I'll hack the cross-platform SCSI card, that should card the SCSI card!","Try to calculate the FTP matrix, maybe it will calculate the bluetooth matrix!",,,,Delphine (https://katlynn.org); Meredith (https://johanna.info); Jacklyn (https://kadin.com); Hardy (https://donna.info); Margarett (http://amelie.net); Maude (http://lilyan.biz); Kian (https://marian.com) +Chief Solutions Administrator,0.4.1,Ignored,,"indexing the program won't do anything, we need to reboot the virtual XSS program!","indexing the application won't do anything, we need to parse the mobile TCP application!",,https://bertrand.biz,Aylin (https://amie.biz); Marianne (https://ramona.net); Mariela (http://wilfredo.com); Everett (http://vanessa.name); Mallory (http://angeline.name) +Lead Security Representative,0.4.4,Url,,"If we copy the capacitor, we can get to the COM capacitor through the mobile COM capacitor!","Try to generate the RSS protocol, maybe it will generate the auxiliary protocol!",,,Dallas (http://samanta.net); Jeremie (https://damian.info); Domenic (http://keon.com) diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef4ccb7bd6c74ab.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef4ccb7bd6c74ab.verified.txt new file mode 100644 index 00000000..d7053a1b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef4ccb7bd6c74ab.verified.txt @@ -0,0 +1,22 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Principal Functionality Agent,1.5.3,Ignored,"connecting the firewall won't do anything, we need to copy the digital XSS firewall!",,,,,Eleanora (http://jaeden.info); Nikolas (https://daphney.net); Oceane (http://clifton.com); Francisco (http://bessie.com); Verna (https://rupert.info); Furman (https://torrey.biz) +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_00d2315fe9578442.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_00d2315fe9578442.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_00d2315fe9578442.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_019787a856a16ad2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_019787a856a16ad2.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_019787a856a16ad2.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0314779574b30847.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0314779574b30847.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0314779574b30847.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_04c7618456407021.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_04c7618456407021.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_04c7618456407021.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0544bb1ec3c42cdc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0544bb1ec3c42cdc.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0544bb1ec3c42cdc.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0743411a34e69cf6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0743411a34e69cf6.verified.txt new file mode 100644 index 00000000..d7fddf80 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0743411a34e69cf6.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",,You can't override the capacitor without navigating the cross-platform FTP capacitor!,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +National Intranet Technician,8.0.0,Url,,,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +International Data Associate,8.9.3,Ignored,,,,,, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Investor Identity Manager,7.9.5,Ignored,,,You can't index the microchip without backing up the back-end CSS microchip!,,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Product Branding Director,1.2.7,Ignored,,,,,, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Legacy Response Specialist,0.9.4,Ignored,,,We need to generate the online HDD matrix!,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Human Interactions Officer,9.4.9,Url,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0911184c443d1de1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0911184c443d1de1.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0911184c443d1de1.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0a5a76f0add5ac7b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0a5a76f0add5ac7b.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0a5a76f0add5ac7b.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0bb76a105dcc8e15.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0bb76a105dcc8e15.verified.txt new file mode 100644 index 00000000..44195e09 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0bb76a105dcc8e15.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0c6febc546a1da82.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0c6febc546a1da82.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_0c6febc546a1da82.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1019848b651111b3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1019848b651111b3.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1019848b651111b3.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_11a8f7de1f52f663.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_11a8f7de1f52f663.verified.txt new file mode 100644 index 00000000..15065cf8 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_11a8f7de1f52f663.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Legacy Web Administrator,6.2.8,Expression,,,,,, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +Chief Directives Manager,2.4.3,File,,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_12431d6c30ea0e02.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_12431d6c30ea0e02.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_12431d6c30ea0e02.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1466516dd9d0a6e7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1466516dd9d0a6e7.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1466516dd9d0a6e7.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_15a0708baf3ce807.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_15a0708baf3ce807.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_15a0708baf3ce807.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_15b5ba01e84fe0b0.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_15b5ba01e84fe0b0.verified.txt new file mode 100644 index 00000000..7f40f4b3 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_15b5ba01e84fe0b0.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_19f73af6e30abbb5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_19f73af6e30abbb5.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_19f73af6e30abbb5.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1b0601daf1a6647f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1b0601daf1a6647f.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1b0601daf1a6647f.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1ec01e8c932df2e3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1ec01e8c932df2e3.verified.txt new file mode 100644 index 00000000..8b35f3f6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1ec01e8c932df2e3.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,,We need to input the neural SQL program!,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,,"If we copy the array, we can get to the SAS array through the neural SAS array!",,http://helen.name, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Principal Intranet Manager,3.8.8,File,,,,,, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Chief Response Strategist,8.0.4,Ignored,,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Regional Operations Analyst,7.0.8,Ignored,,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,http://rene.com, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Internal Marketing Executive,2.0.0,Url,,,,,, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Product Web Strategist,3.5.8,Ignored,,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,https://anjali.name, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1fb523224190f184.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1fb523224190f184.verified.txt new file mode 100644 index 00000000..e770e418 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1fb523224190f184.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1ffee189dd4b8e64.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1ffee189dd4b8e64.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_1ffee189dd4b8e64.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_20332b8146282628.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_20332b8146282628.verified.txt new file mode 100644 index 00000000..5d03886e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_20332b8146282628.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2162838ee3f0aacf.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2162838ee3f0aacf.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2162838ee3f0aacf.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_218feb109447dc69.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_218feb109447dc69.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_218feb109447dc69.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_254503835cbdc217.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_254503835cbdc217.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_254503835cbdc217.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_254853284c95d37f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_254853284c95d37f.verified.txt new file mode 100644 index 00000000..bea3dfd0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_254853284c95d37f.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_28688354bf069b13.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_28688354bf069b13.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_28688354bf069b13.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_29edb3e3d80abb04.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_29edb3e3d80abb04.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_29edb3e3d80abb04.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2c78002bf0bb7c60.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2c78002bf0bb7c60.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2c78002bf0bb7c60.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2c85be3d342f5662.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2c85be3d342f5662.verified.txt new file mode 100644 index 00000000..8ee68458 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2c85be3d342f5662.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Global Security Liaison,6.1.8,Expression,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2cc4567fa154d569.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2cc4567fa154d569.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2cc4567fa154d569.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2f2c7b71f8c0be58.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2f2c7b71f8c0be58.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2f2c7b71f8c0be58.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2f49bbbba236db6e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2f49bbbba236db6e.verified.txt new file mode 100644 index 00000000..3f6fa5dd --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_2f49bbbba236db6e.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_30d9c5bc91bbfa18.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_30d9c5bc91bbfa18.verified.txt new file mode 100644 index 00000000..a60c7d86 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_30d9c5bc91bbfa18.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +Human Optimization Facilitator,7.4.8,Ignored,"Try to connect the SMS card, maybe it will connect the back-end card!",You can't override the capacitor without navigating the cross-platform FTP capacitor!,,"Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva,Glenn Okuneva",https://cooper.name, +National Intranet Technician,8.0.0,Url,,,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +International Data Associate,8.9.3,Ignored,,,,,, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Investor Identity Manager,7.9.5,Ignored,,You can't index the microchip without backing up the back-end CSS microchip!,,,, +International Mobility Officer,2.3.6,Ignored,"overriding the panel won't do anything, we need to generate the cross-platform SMS panel!",,,,, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Product Branding Director,1.2.7,Ignored,,,,,, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Central Identity Specialist,6.5.9,Ignored,,,,Kayla Klein,, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Global Directives Associate,3.8.3,Ignored,You can't parse the protocol without parsing the solid state PCI protocol!,,,,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Investor Infrastructure Agent,3.6.4,Ignored,"Try to back up the AI hard drive, maybe it will back up the cross-platform hard drive!",,,,, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Customer Solutions Officer,4.5.2,Ignored,You can't copy the matrix without compressing the wireless AGP matrix!,,,,https://rylan.name, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Legacy Response Specialist,0.9.4,Ignored,,We need to generate the online HDD matrix!,,"Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker,Cesar Walker",, +Legacy Configuration Designer,7.0.6,Ignored,,,,"Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner,Laura Wehner",https://teagan.net, +Legacy Interactions Designer,5.5.4,Ignored,,,,,https://colin.org, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Lead Infrastructure Facilitator,8.0.8,Ignored,,,,,http://willard.name, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Corporate Paradigm Producer,0.5.0,Ignored,,,,"Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel,Ann Reichel",http://mitchell.com, +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Human Interactions Officer,9.4.9,Url,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_32ca162166452a96.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_32ca162166452a96.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_32ca162166452a96.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_33c778cd4e6e0f69.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_33c778cd4e6e0f69.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_33c778cd4e6e0f69.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_348720950bc394fc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_348720950bc394fc.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_348720950bc394fc.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3776853d983abc0f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3776853d983abc0f.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3776853d983abc0f.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3a4b84f3c4d7264d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3a4b84f3c4d7264d.verified.txt new file mode 100644 index 00000000..9b6dec18 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3a4b84f3c4d7264d.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3ba7b0a2c592c040.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3ba7b0a2c592c040.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3ba7b0a2c592c040.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3bedc520e07eba02.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3bedc520e07eba02.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3bedc520e07eba02.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3c12c946041d925f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3c12c946041d925f.verified.txt new file mode 100644 index 00000000..9d04a277 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_3c12c946041d925f.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_42a9613791d53e7b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_42a9613791d53e7b.verified.txt new file mode 100644 index 00000000..5fb26538 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_42a9613791d53e7b.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_445165e7546d75b6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_445165e7546d75b6.verified.txt new file mode 100644 index 00000000..e3e9bc7e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_445165e7546d75b6.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Global Communications Designer,0.6.3,File,,,,,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_4584581b34e7d56d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_4584581b34e7d56d.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_4584581b34e7d56d.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_468dc25d3ce92897.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_468dc25d3ce92897.verified.txt new file mode 100644 index 00000000..bea3dfd0 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_468dc25d3ce92897.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_47463714502342a2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_47463714502342a2.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_47463714502342a2.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_488dc774c9a3f96d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_488dc774c9a3f96d.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_488dc774c9a3f96d.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_48dfea018f9b6d65.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_48dfea018f9b6d65.verified.txt new file mode 100644 index 00000000..f13a9e6a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_48dfea018f9b6d65.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_530328bfe8e62d09.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_530328bfe8e62d09.verified.txt new file mode 100644 index 00000000..5fb26538 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_530328bfe8e62d09.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_547ffef09732c09e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_547ffef09732c09e.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_547ffef09732c09e.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_568e8bc27a59c1e5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_568e8bc27a59c1e5.verified.txt new file mode 100644 index 00000000..0c097211 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_568e8bc27a59c1e5.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_593292f23f711196.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_593292f23f711196.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_593292f23f711196.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_59a62396ff5d58dd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_59a62396ff5d58dd.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_59a62396ff5d58dd.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5b07626c565d833e.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5b07626c565d833e.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5b07626c565d833e.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5c33be9e8efe3ab7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5c33be9e8efe3ab7.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5c33be9e8efe3ab7.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5dbc374c313e7743.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5dbc374c313e7743.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5dbc374c313e7743.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5de046e40cd484e4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5de046e40cd484e4.verified.txt new file mode 100644 index 00000000..7d04dda5 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5de046e40cd484e4.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5e3b53039763dd07.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5e3b53039763dd07.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_5e3b53039763dd07.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_61679ba3016cb20b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_61679ba3016cb20b.verified.txt new file mode 100644 index 00000000..69162890 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_61679ba3016cb20b.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_64b052b2c37d8c91.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_64b052b2c37d8c91.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_64b052b2c37d8c91.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_67b6e7cb6626d3f6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_67b6e7cb6626d3f6.verified.txt new file mode 100644 index 00000000..0e33f43b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_67b6e7cb6626d3f6.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_68a2f49e28800a2b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_68a2f49e28800a2b.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_68a2f49e28800a2b.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_697a587d03251cf9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_697a587d03251cf9.verified.txt new file mode 100644 index 00000000..8525cac1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_697a587d03251cf9.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!",,"Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,http://karl.com, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!",,"Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,https://roman.biz, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_70f99fec7eacf3dc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_70f99fec7eacf3dc.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_70f99fec7eacf3dc.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_71c160373ea16472.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_71c160373ea16472.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_71c160373ea16472.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_74529958a9908361.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_74529958a9908361.verified.txt new file mode 100644 index 00000000..2c5e7253 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_74529958a9908361.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Senior Quality Architect,4.5.6,Unknown,,"If we index the card, we can get to the XSS card through the neural XSS card!",,"Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +National Intranet Technician,8.0.0,Url,,,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",You can't bypass the sensor without backing up the primary AI sensor!,,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Configuration Coordinator,2.7.1,Url,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,"Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Solutions Facilitator,7.1.5,Overwrite,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +National Communications Administrator,8.4.8,Overwrite,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Dynamic Division Engineer,3.8.2,Url,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!",,"Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,"Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Product Mobility Executive,8.4.8,File,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!",,"Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +District Integration Designer,6.2.2,File,,You can't connect the port without connecting the back-end COM port!,,,https://cindy.org, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,,https://nora.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!","programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",We need to hack the 1080p PNG system!,,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Central Research Engineer,7.1.3,Unknown,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Senior Operations Assistant,2.4.2,File,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,,https://hector.info, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",We need to parse the multi-byte GB microchip!,,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Corporate Accountability Associate,2.5.4,Overwrite,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!","Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,Lynn Williamson,http://deon.org, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Lead Metrics Architect,5.6.5,File,,"Use the online SQL protocol, then you can input the online protocol!",,"Sandra Muller,Sandra Muller,Sandra Muller",, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!","connecting the sensor won't do anything, we need to reboot the haptic IB sensor!",,"Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Customer Quality Designer,3.7.5,Overwrite,,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!","Use the primary USB pixel, then you can index the primary pixel!",,"Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!","Use the auxiliary SMTP system, then you can bypass the auxiliary system!",,Vickie Sipes,http://merl.biz, +Direct Data Assistant,5.2.0,Overwrite,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,,, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Principal Factors Director,1.5.1,Overwrite,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!",,"Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",We need to reboot the multi-byte AI system!,,,, +Human Metrics Architect,4.5.7,Unknown,,We need to reboot the neural AI monitor!,,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!","I'll synthesize the virtual PNG panel, that should panel the PNG panel!",,"Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Human Interactions Officer,9.4.9,Url,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_74632487b87d746a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_74632487b87d746a.verified.txt new file mode 100644 index 00000000..0c3d6c30 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_74632487b87d746a.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_749cfd68aedac5b2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_749cfd68aedac5b2.verified.txt new file mode 100644 index 00000000..5b112751 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_749cfd68aedac5b2.verified.txt @@ -0,0 +1,18 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Chief Directives Manager,2.4.3,File,,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_761cedcf3c3ca0db.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_761cedcf3c3ca0db.verified.txt new file mode 100644 index 00000000..2bb2a1ab --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_761cedcf3c3ca0db.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_777f06878bc3d3c4.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_777f06878bc3d3c4.verified.txt new file mode 100644 index 00000000..0c3d6c30 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_777f06878bc3d3c4.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7baa8c52594adf11.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7baa8c52594adf11.verified.txt new file mode 100644 index 00000000..a575d632 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7baa8c52594adf11.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7d47b80e9013bc3b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7d47b80e9013bc3b.verified.txt new file mode 100644 index 00000000..2516c78e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7d47b80e9013bc3b.verified.txt @@ -0,0 +1,20 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7f47fd5bc3a8779c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7f47fd5bc3a8779c.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_7f47fd5bc3a8779c.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_82d20a0606ec22c9.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_82d20a0606ec22c9.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_82d20a0606ec22c9.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_834a898a9c3b075f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_834a898a9c3b075f.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_834a898a9c3b075f.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_83a38fea305e70b6.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_83a38fea305e70b6.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_83a38fea305e70b6.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_84ffb4652e46dfd7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_84ffb4652e46dfd7.verified.txt new file mode 100644 index 00000000..117c42d9 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_84ffb4652e46dfd7.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Future Security Executive,1.1.3,Expression,,,,,, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Direct Factors Architect,9.0.4,File,,,,,, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Product Group Assistant,3.3.8,Expression,,,,,, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_85e85fe19b8fa300.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_85e85fe19b8fa300.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_85e85fe19b8fa300.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8752bca4f23969a5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8752bca4f23969a5.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8752bca4f23969a5.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8a5901af451db8bf.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8a5901af451db8bf.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8a5901af451db8bf.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8a66380b02728ba5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8a66380b02728ba5.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8a66380b02728ba5.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8dec82ffcf646af7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8dec82ffcf646af7.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8dec82ffcf646af7.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8e17cb81e46b82a5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8e17cb81e46b82a5.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8e17cb81e46b82a5.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8ee6aa36725e8611.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8ee6aa36725e8611.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_8ee6aa36725e8611.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9716f5dc9aa3734d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9716f5dc9aa3734d.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9716f5dc9aa3734d.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_971dc44de97467b3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_971dc44de97467b3.verified.txt new file mode 100644 index 00000000..05e2e31a --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_971dc44de97467b3.verified.txt @@ -0,0 +1,17 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Global Communications Designer,0.6.3,File,,,,,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9a26a71813ee32a3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9a26a71813ee32a3.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9a26a71813ee32a3.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9be8fc62eb0bfb55.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9be8fc62eb0bfb55.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9be8fc62eb0bfb55.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9ea6bcf2528452ab.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9ea6bcf2528452ab.verified.txt new file mode 100644 index 00000000..cbe006a2 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9ea6bcf2528452ab.verified.txt @@ -0,0 +1,85 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, +Senior Quality Architect,4.5.6,Unknown,,,"If we index the card, we can get to the XSS card through the neural XSS card!","Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica,Maurice Watsica",https://norene.com, +Dynamic Accountability Strategist,7.0.9,Expression,You can't bypass the sensor without transmitting the neural JSON sensor!,,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",, +Lead Mobility Planner,5.7.8,File,,,,,https://roberta.biz, +Legacy Markets Officer,0.4.7,Overwrite,We need to override the solid state AGP circuit!,,,"Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke,Violet Bradtke",, +National Intranet Technician,8.0.0,Url,,,,,, +Regional Paradigm Analyst,1.5.4,Unknown,"If we quantify the transmitter, we can get to the EXE transmitter through the digital EXE transmitter!",,You can't bypass the sensor without backing up the primary AI sensor!,"Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp",, +Dynamic Mobility Orchestrator,7.3.0,Overwrite,"Use the primary SAS program, then you can transmit the primary program!",,,,http://earl.net, +Central Mobility Supervisor,4.7.9,Unknown,,,,"Philip Towne,Philip Towne",, +Internal Configuration Coordinator,2.7.1,Url,,,"I'll synthesize the solid state RSS port, that should port the RSS port!","Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns,Kayla Johns",https://kameron.org, +Customer Applications Assistant,8.7.3,Url,"If we navigate the sensor, we can get to the SSL sensor through the open-source SSL sensor!",,,,http://aisha.org, +Principal Solutions Facilitator,7.1.5,Overwrite,,,"The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel!",,, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,,"Frank O'Conner,Frank O'Conner,Frank O'Conner",, +National Communications Administrator,8.4.8,Overwrite,,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,, +Dynamic Division Engineer,3.8.2,Url,,,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Tanya Bins,Tanya Bins,Tanya Bins",http://regan.org, +Human Operations Technician,6.6.2,File,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!","Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt,Rita Greenholt",http://cielo.biz, +Dynamic Program Analyst,4.1.4,Expression,,,,,http://laurianne.com, +Future Optimization Assistant,9.5.1,Url,,,,,https://dante.com, +Investor Directives Planner,4.7.2,Url,,,,"Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan,Randal Durgan",http://wiley.net, +Central Paradigm Planner,2.7.2,Url,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,,"Gina Carroll,Gina Carroll,Gina Carroll,Gina Carroll",http://annetta.com, +Product Mobility Executive,8.4.8,File,,,"If we transmit the driver, we can get to the XSS driver through the auxiliary XSS driver!","Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield,Peter Satterfield",https://durward.org, +Dynamic Assurance Orchestrator,7.2.1,Unknown,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,"Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen,Cameron Friesen",http://gladyce.biz, +District Integration Designer,6.2.2,File,,,You can't connect the port without connecting the back-end COM port!,,https://cindy.org, +Future Applications Engineer,6.8.5,File,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,"Use the wireless THX port, then you can navigate the wireless port!",,https://nora.biz, +Chief Identity Agent,5.8.4,File,,,,,http://daniella.org, +Future Communications Associate,8.7.4,Expression,"If we index the bandwidth, we can get to the HDD bandwidth through the multi-byte HDD bandwidth!",,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,, +Product Security Manager,3.4.7,Overwrite,,,,"Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback,Virginia Kilback",http://shaun.biz, +Regional Creative Supervisor,2.2.9,File,"Try to copy the CSS capacitor, maybe it will copy the mobile capacitor!",,We need to hack the 1080p PNG system!,"Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie,Maxine Ritchie",, +Central Research Engineer,7.1.3,Unknown,,,You can't parse the circuit without navigating the auxiliary SMTP circuit!,"Melba Cole,Melba Cole,Melba Cole,Melba Cole,Melba Cole",, +National Creative Developer,8.9.1,Expression,We need to program the auxiliary CSS driver!,,,,https://herminio.biz, +Chief Applications Designer,1.8.5,File,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Senior Operations Assistant,2.4.2,File,,,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,https://hector.info, +Direct Accountability Liaison,0.4.3,Url,"Use the auxiliary AGP matrix, then you can generate the auxiliary matrix!",,We need to parse the multi-byte GB microchip!,"Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera,Candace Romaguera",, +Corporate Accountability Associate,2.5.4,Overwrite,,,"I'll hack the optical XSS monitor, that should monitor the XSS monitor!",,, +Dynamic Applications Manager,4.8.7,Expression,"generating the bandwidth won't do anything, we need to back up the wireless COM bandwidth!",,,,, +Central Intranet Developer,6.7.3,Expression,,,,"Bob Hayes,Bob Hayes,Bob Hayes,Bob Hayes",http://darion.name, +Dynamic Markets Producer,8.7.1,Expression,,,,,, +Direct Markets Facilitator,2.3.4,File,"The RSS microchip is down, connect the neural microchip so we can connect the RSS microchip!",,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",Lynn Williamson,http://deon.org, +Customer Usability Strategist,5.0.0,Url,We need to parse the redundant EXE capacitor!,,,"Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer,Aubrey Kautzer",https://colin.net, +Global Mobility Associate,1.3.2,Url,"navigating the port won't do anything, we need to connect the digital TCP port!",,,"Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray,Marvin Murray",, +Lead Metrics Architect,5.6.5,File,,,"Use the online SQL protocol, then you can input the online protocol!","Sandra Muller,Sandra Muller,Sandra Muller",, +Senior Program Engineer,3.8.3,File,,,,"Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels,Adrienne Huels",, +Legacy Operations Producer,4.0.4,File,"If we program the monitor, we can get to the RSS monitor through the 1080p RSS monitor!",,"connecting the sensor won't do anything, we need to reboot the haptic IB sensor!","Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay,Camille Tremblay",, +Internal Factors Manager,2.1.3,Expression,,,,,http://paolo.info, +Customer Quality Designer,3.7.5,Overwrite,,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",https://elza.info, +Legacy Assurance Orchestrator,4.4.9,Url,We need to reboot the mobile SMTP sensor!,,,,, +Internal Assurance Assistant,7.5.8,Unknown,"If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall!",,"Use the primary USB pixel, then you can index the primary pixel!","Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik,Jake Murazik",http://reyna.info, +Dynamic Branding Analyst,4.4.1,File,,,,Rochelle Turner,, +Forward Usability Specialist,5.6.9,Expression,"I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth!",,,,, +Human Group Engineer,9.8.9,Overwrite,,,,,, +Forward Assurance Planner,0.0.0,Overwrite,"Use the mobile IB system, then you can index the mobile system!",,"Use the auxiliary SMTP system, then you can bypass the auxiliary system!",Vickie Sipes,http://merl.biz, +Direct Data Assistant,5.2.0,Overwrite,,,"Try to navigate the PCI driver, maybe it will navigate the optical driver!",,, +Legacy Marketing Associate,1.4.9,Unknown,,,,,http://lola.info, +Product Solutions Specialist,2.4.9,Expression,,,,,, +Internal Communications Architect,3.6.1,Expression,"Try to transmit the SMS feed, maybe it will transmit the 1080p feed!",,,"Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore,Brandi D'Amore",https://cassandra.org, +Principal Factors Director,1.5.1,Overwrite,,,"overriding the matrix won't do anything, we need to back up the solid state IB matrix!","Olga Gerhold,Olga Gerhold,Olga Gerhold,Olga Gerhold",, +Dynamic Integration Coordinator,9.3.5,Overwrite,"copying the card won't do anything, we need to copy the optical PCI card!",,,"Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz,Dominick Lubowitz",, +Regional Research Designer,4.5.0,File,"The COM capacitor is down, override the back-end capacitor so we can override the COM capacitor!",,We need to reboot the multi-byte AI system!,,, +Human Metrics Architect,4.5.7,Unknown,,,We need to reboot the neural AI monitor!,"Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler,Daryl Kohler",http://paul.info, +Principal Optimization Representative,6.6.7,File,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",,You can't navigate the card without programming the bluetooth COM card!,,https://shana.info, +Principal Identity Engineer,8.0.6,Unknown,"The SMTP bus is down, navigate the 1080p bus so we can navigate the SMTP bus!",,"I'll synthesize the virtual PNG panel, that should panel the PNG panel!","Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert,Daniel Ebert",, +Customer Markets Director,9.3.3,Overwrite,,,,,https://terrell.org, +Regional Security Specialist,9.6.9,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,,"Frederick Durgan,Frederick Durgan,Frederick Durgan",https://marcos.com, +Global Interactions Planner,5.9.3,Unknown,"Use the optical SMS program, then you can reboot the optical program!",,,,, +Internal Markets Executive,5.9.1,File,,,,"Pamela Herman,Pamela Herman,Pamela Herman,Pamela Herman",, +Human Interactions Officer,9.4.9,Url,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9ed6df5fefaf5f0d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9ed6df5fefaf5f0d.verified.txt new file mode 100644 index 00000000..00aa4b59 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9ed6df5fefaf5f0d.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9f512812085d1780.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9f512812085d1780.verified.txt new file mode 100644 index 00000000..5fb26538 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_9f512812085d1780.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a54f0bfb1f1efd34.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a54f0bfb1f1efd34.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a54f0bfb1f1efd34.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a68f863ab8a91a3a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a68f863ab8a91a3a.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a68f863ab8a91a3a.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a74892fd232cb9fe.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a74892fd232cb9fe.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a74892fd232cb9fe.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a7489861e31d7df1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a7489861e31d7df1.verified.txt new file mode 100644 index 00000000..f590cf82 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a7489861e31d7df1.verified.txt @@ -0,0 +1,83 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Principal Intranet Manager,3.8.8,File,,,,,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Internal Marketing Executive,2.0.0,Url,,,,,, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a7f63bbf89878cbc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a7f63bbf89878cbc.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a7f63bbf89878cbc.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a84202f5174cd8f1.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a84202f5174cd8f1.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a84202f5174cd8f1.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a90d4827343436af.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a90d4827343436af.verified.txt new file mode 100644 index 00000000..12efc3a7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a90d4827343436af.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,http://rowan.com, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a9215bd761040358.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a9215bd761040358.verified.txt new file mode 100644 index 00000000..8c00a52f --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_a9215bd761040358.verified.txt @@ -0,0 +1,83 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Global Implementation Engineer,6.0.7,Unknown,,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",,We need to reboot the virtual RSS alarm!,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!",,"If we synthesize the port, we can get to the ADP port through the neural ADP port!",,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,,You can't override the capacitor without overriding the mobile XML capacitor!,,, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!",,"If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,https://lois.biz, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!",,"connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,https://charlie.org, +District Branding Strategist,8.2.9,Unknown,,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,https://schuyler.biz, +Corporate Assurance Executive,3.2.1,Overwrite,,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,http://darrell.com, +Central Markets Developer,5.5.8,Expression,,,You can't parse the port without bypassing the multi-byte GB port!,,, +Chief Applications Facilitator,7.7.6,Url,,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,We need to index the bluetooth ADP array!,,, +Forward Infrastructure Consultant,1.3.1,Unknown,,,"Use the primary EXE array, then you can navigate the primary array!",,https://anita.net, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,http://leilani.com, +District Tactics Specialist,3.4.5,File,,,"Use the back-end SMS feed, then you can program the back-end feed!",,http://stella.info, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://jack.name, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,https://eryn.com, +Senior Metrics Coordinator,9.3.9,Expression,,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Corporate Research Representative,9.0.5,Overwrite,,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,, +Internal Division Agent,2.4.2,Expression,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,"I'll synthesize the haptic CSS array, that should array the CSS array!",,http://ahmad.com, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!",,"Use the primary SDD firewall, then you can navigate the primary firewall!",,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Legacy Communications Producer,5.4.0,Expression,,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",,We need to connect the bluetooth RSS application!,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,https://kameron.org, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Dynamic Usability Engineer,0.2.8,Expression,,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!",,"Use the virtual HDD program, then you can program the virtual program!",,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Principal Intranet Manager,3.8.8,File,,,,,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,, +Internal Operations Producer,5.8.9,File,,,"Use the online SMTP pixel, then you can index the online pixel!",,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,"I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,http://cielo.biz, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!",,"The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,https://lonny.biz, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Metrics Assistant,8.7.4,Url,,,"Use the solid state IB interface, then you can override the solid state interface!",,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Legacy Accounts Producer,3.6.5,Overwrite,,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,, +Internal Marketing Executive,2.0.0,Url,,,,,, +District Intranet Consultant,0.4.8,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,http://lorenzo.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",,You can't quantify the capacitor without navigating the optical SDD capacitor!,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!",,"parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,http://shanna.com, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",,You can't bypass the firewall without hacking the haptic USB firewall!,,http://gladyce.biz, +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!",,"Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!",,"The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,https://kian.net, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_aa234fcacfd10e4b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_aa234fcacfd10e4b.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_aa234fcacfd10e4b.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_aa81e1f4e60fbb80.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_aa81e1f4e60fbb80.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_aa81e1f4e60fbb80.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ac2402fa003a9975.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ac2402fa003a9975.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ac2402fa003a9975.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ad95c252a1cb2522.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ad95c252a1cb2522.verified.txt new file mode 100644 index 00000000..a96b46d7 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ad95c252a1cb2522.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b2414235c83e813a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b2414235c83e813a.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b2414235c83e813a.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b3260982b4c548d5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b3260982b4c548d5.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b3260982b4c548d5.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b442703b6c7d8826.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b442703b6c7d8826.verified.txt new file mode 100644 index 00000000..ba0d0417 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b442703b6c7d8826.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b4546e74ca62c60c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b4546e74ca62c60c.verified.txt new file mode 100644 index 00000000..44195e09 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b4546e74ca62c60c.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b665ba88d438d211.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b665ba88d438d211.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b665ba88d438d211.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b6a5b8535a5bbe2c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b6a5b8535a5bbe2c.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_b6a5b8535a5bbe2c.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ba2e9a1d086bdf39.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ba2e9a1d086bdf39.verified.txt new file mode 100644 index 00000000..0e33f43b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ba2e9a1d086bdf39.verified.txt @@ -0,0 +1,6 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ba32ddb9cfbf24be.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ba32ddb9cfbf24be.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ba32ddb9cfbf24be.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bac80f154e03b9c2.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bac80f154e03b9c2.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bac80f154e03b9c2.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bb88d40ff67a90ad.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bb88d40ff67a90ad.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bb88d40ff67a90ad.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bcb2895fa45df93d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bcb2895fa45df93d.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bcb2895fa45df93d.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_be4789dace582293.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_be4789dace582293.verified.txt new file mode 100644 index 00000000..d9ba77fb --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_be4789dace582293.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,,,"Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey,Michelle Harvey",http://rowan.com, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +District Branding Analyst,1.9.5,Overwrite,,,,,https://paula.net, +Future Data Architect,8.5.1,Unknown,"The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall!",,,"Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka,Benjamin Spinka",, +Investor Data Assistant,6.9.6,Url,,,,,https://charity.net, +Chief Mobility Supervisor,2.3.6,Ignored,"generating the matrix won't do anything, we need to parse the solid state GB matrix!",,,,, +District Implementation Assistant,0.4.7,Unknown,,,,,http://melisa.com, +Chief Markets Analyst,9.2.9,Url,,,,"Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman",, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,,,"Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly,Dominic Reilly",https://lois.biz, +Global Research Executive,1.4.4,Url,,,,"Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich,Alicia Emmerich",, +International Optimization Coordinator,6.5.5,File,,,,,http://antoinette.org, +Legacy Research Technician,6.1.9,Overwrite,"I'll program the back-end EXE sensor, that should sensor the EXE sensor!",,,"Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones,Lorraine Jones",, +Dynamic Identity Director,8.4.5,Ignored,,,,"Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson,Patsy Williamson",https://bradly.name, +Dynamic Division Agent,4.2.8,File,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,,,https://camilla.info, +Forward Factors Architect,5.5.8,Ignored,,,,"Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein",http://marianne.info, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Identity Orchestrator,1.3.3,Overwrite,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",,,"Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner,Lee Oberbrunner",, +Senior Factors Administrator,3.3.4,Unknown,,,,"Raymond Dickens,Raymond Dickens",https://eryn.com, +Legacy Data Facilitator,0.9.0,Overwrite,"bypassing the program won't do anything, we need to bypass the optical AI program!",,,"Lucille Smith,Lucille Smith",https://beatrice.net, +Corporate Group Planner,8.1.1,File,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,"Dianne Kunde,Dianne Kunde,Dianne Kunde,Dianne Kunde",http://nyasia.info, +Corporate Response Administrator,3.4.2,Ignored,,,,"Colleen Satterfield,Colleen Satterfield",https://veronica.biz, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Legacy Communications Producer,5.4.0,Url,,,,"Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas,Pauline Douglas",, +Corporate Functionality Agent,2.3.2,Url,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,"Martha Marks,Martha Marks,Martha Marks,Martha Marks,Martha Marks",https://rosario.info, +Central Security Administrator,1.6.5,Expression,"The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus!",,,"Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz,Peggy Lueilwitz",https://estel.biz, +Future Metrics Planner,2.3.8,Url,,,,,http://annabel.com, +Dynamic Security Assistant,2.0.0,Overwrite,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +International Brand Consultant,0.0.6,Unknown,"calculating the application won't do anything, we need to hack the digital PCI application!",,,,, +Investor Division Facilitator,4.8.4,Overwrite,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,,, +Dynamic Division Engineer,3.8.2,Url,,,,"Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke,Erin Kassulke",http://regan.org, +Human Operations Technician,6.6.2,Url,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!",,,"Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson,Jessica Dickinson",http://cielo.biz, +International Research Architect,5.1.5,Url,"If we override the circuit, we can get to the JSON circuit through the haptic JSON circuit!",,,,, +Senior Metrics Assistant,8.7.4,Expression,,,,"Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff,Laverne Wolff",, +Future Security Executive,1.1.3,Expression,,,,,, +Product Metrics Assistant,6.3.6,Url,"Try to synthesize the EXE sensor, maybe it will synthesize the virtual sensor!",,,Tracy Bahringer,, +Global Accounts Executive,3.3.3,Unknown,,,,"Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg,Kari Padberg",https://jany.com, +Future Group Associate,6.4.4,Unknown,"Use the optical ADP capacitor, then you can reboot the optical capacitor!",,,,, +Dynamic Usability Agent,0.0.1,Url,You can't generate the transmitter without navigating the multi-byte SMS transmitter!,,,"Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich,Elsie Emmerich",, +Customer Data Technician,0.0.1,Unknown,,,,,http://lenny.org, +Dynamic Operations Technician,2.2.6,File,You can't connect the port without connecting the back-end COM port!,,,,http://sandrine.com, +Future Applications Engineer,6.8.5,Expression,"If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!",,,"Janie Considine,Janie Considine,Janie Considine,Janie Considine,Janie Considine",https://nora.biz, +Senior Paradigm Executive,2.3.4,Expression,,,,,https://hollie.org, +Principal Configuration Developer,6.2.9,Ignored,"If we calculate the program, we can get to the RAM program through the optical RAM program!",,,,, +Dynamic Markets Analyst,0.6.4,File,,,,,, +Corporate Mobility Technician,3.2.5,Overwrite,,,,"Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey,Eva Harvey",https://ayla.info, +Central Program Executive,0.5.5,Overwrite,,,,,http://rosanna.name, +Central Web Facilitator,0.9.1,Overwrite,"Use the mobile SSL port, then you can index the mobile port!",,,"Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik,Verna Murazik",, +Dynamic Metrics Producer,7.2.1,Url,"I'll connect the cross-platform HDD driver, that should driver the HDD driver!",,,,, +Lead Intranet Supervisor,8.2.3,Unknown,"Use the optical EXE port, then you can back up the optical port!",,,"Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider,Jane Schneider",https://dusty.biz, +Chief Program Associate,2.6.7,Unknown,We need to compress the optical PNG array!,,,,http://coy.info, +Direct Communications Analyst,0.1.6,Ignored,We need to synthesize the redundant TCP system!,,,"Darrin Wyman,Darrin Wyman",, +Senior Research Liaison,5.0.6,Ignored,"If we compress the system, we can get to the AGP system through the multi-byte AGP system!",,,"Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson,Leigh Runolfsson",http://clair.biz, +Chief Brand Officer,8.3.8,File,,,,Nellie Oberbrunner,, +Direct Factors Architect,9.0.4,File,,,,,, +Global Quality Architect,8.0.2,File,"Try to transmit the SMS alarm, maybe it will transmit the bluetooth alarm!",,,Lynn Williamson,, +Customer Usability Strategist,5.0.0,Expression,We need to parse the redundant EXE capacitor!,,,,https://colin.net, +Corporate Intranet Technician,0.2.0,Overwrite,"Use the 1080p PNG panel, then you can transmit the 1080p panel!",,,"Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum,Adam Rosenbaum",http://ashleigh.org, +Internal Optimization Assistant,2.3.3,Overwrite,,,,"Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel,Lynette Rempel",https://linnie.name, +Global Operations Director,3.1.5,Overwrite,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,,, +Legacy Integration Analyst,2.7.8,Overwrite,,,,,https://demetrius.net, +Principal Factors Administrator,7.6.8,Overwrite,"If we navigate the bus, we can get to the HTTP bus through the open-source HTTP bus!",,,,https://verla.com, +Human Optimization Consultant,3.3.6,Overwrite,"If we input the driver, we can get to the JSON driver through the redundant JSON driver!",,,"Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier,Darren Cormier",, +Internal Web Assistant,8.5.5,Url,"parsing the circuit won't do anything, we need to bypass the bluetooth SMS circuit!",,,"Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler,Brandi Leffler",, +Dynamic Tactics Facilitator,0.7.3,Expression,,,,,, +Central Identity Specialist,6.5.9,Ignored,,,,,, +Legacy Communications Manager,0.1.8,Ignored,,,,,http://gus.info, +International Creative Technician,6.9.7,Ignored,,,,,http://arne.org, +District Mobility Orchestrator,5.2.5,Unknown,,,,,, +Forward Infrastructure Orchestrator,8.3.4,Overwrite,"I'll parse the wireless RAM driver, that should driver the RAM driver!",,,"Rafael VonRueden,Rafael VonRueden,Rafael VonRueden",, +Legacy Assurance Orchestrator,4.4.9,Expression,We need to reboot the mobile SMTP sensor!,,,,, +Dynamic Creative Producer,8.7.5,Unknown,,,,Wade Kling,https://alaina.net, +District Implementation Associate,4.2.8,Expression,"I'll hack the digital JSON bus, that should bus the JSON bus!",,,"Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin,Wanda Corwin",, +Regional Accountability Specialist,4.5.4,Expression,"I'll bypass the mobile HTTP protocol, that should protocol the HTTP protocol!",,,"Boyd Moore,Boyd Moore,Boyd Moore,Boyd Moore",, +Forward Research Developer,5.8.2,Unknown,,,,"Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner,Miguel Ledner",https://talia.biz, +Regional Markets Supervisor,5.0.0,Expression,,,,,, +Product Group Assistant,3.3.8,Expression,,,,,, +Global Infrastructure Liaison,2.8.9,Expression,"hacking the sensor won't do anything, we need to parse the primary GB sensor!",,,,, +Lead Integration Director,3.0.2,File,,,,Frank Bergstrom,, +Dynamic Markets Supervisor,4.6.5,Ignored,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!",,,"Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden,Ronald VonRueden",, +Internal Implementation Assistant,8.6.1,Unknown,"I'll synthesize the digital RAM sensor, that should sensor the RAM sensor!",,,"Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler,Kathryn Keebler",, +Internal Applications Analyst,4.0.2,Ignored,,,,,, +Forward Group Developer,2.3.8,File,"Use the bluetooth SDD transmitter, then you can generate the bluetooth transmitter!",,,,, +Corporate Operations Planner,6.6.3,Unknown,You can't calculate the pixel without backing up the auxiliary EXE pixel!,,,Essie Dare,, +Dynamic Communications Director,5.7.8,Ignored,,,,,https://hugh.org, +Legacy Data Representative,6.8.8,Ignored,You can't input the firewall without backing up the online USB firewall!,,,"Inez Larson,Inez Larson,Inez Larson",, +Forward Research Agent,0.2.7,Url,,,,"Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney,Shannon Heaney",, +Internal Web Orchestrator,1.5.5,Unknown,,,,"Gina Stoltenberg,Gina Stoltenberg,Gina Stoltenberg",, +Dynamic Research Consultant,4.2.0,Expression,"I'll program the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,,, +Legacy Brand Representative,0.1.5,Overwrite,"I'll synthesize the open-source PCI driver, that should driver the PCI driver!",,,,, +Corporate Assurance Designer,8.0.0,Expression,,,,"Desiree Ziemann,Desiree Ziemann",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bee8f5a082154a86.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bee8f5a082154a86.verified.txt new file mode 100644 index 00000000..09335c58 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_bee8f5a082154a86.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +District Program Planner,5.5.6,Ignored,,,"programming the array won't do anything, we need to override the multi-byte PCI array!",,http://virgil.name, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Direct Mobility Designer,7.7.3,Ignored,,,,"Eula Prohaska,Eula Prohaska",http://geovanny.info, +Senior Marketing Architect,1.7.9,Ignored,,We need to program the 1080p SMS transmitter!,We need to transmit the auxiliary FTP transmitter!,,, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Global Communications Designer,0.6.3,File,,,,,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Customer Metrics Developer,2.2.9,Ignored,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift,Jordan Swift",, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Customer Applications Supervisor,9.0.5,Ignored,,"Use the online IB protocol, then you can back up the online protocol!",,,, +Internal Security Liaison,1.0.0,Ignored,,,"overriding the interface won't do anything, we need to override the virtual THX interface!",,http://kathryne.com, +Dynamic Operations Administrator,2.0.9,Ignored,,You can't generate the application without transmitting the redundant SAS application!,,"Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham,Belinda Smitham",, +Lead Metrics Associate,3.3.8,Ignored,,,,"Jeremy Robel,Jeremy Robel,Jeremy Robel",, +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!","Use the auxiliary PNG pixel, then you can navigate the auxiliary pixel!",,, +Internal Assurance Assistant,6.8.3,Ignored,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,"synthesizing the monitor won't do anything, we need to copy the 1080p PNG monitor!","Alan Price,Alan Price,Alan Price",, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Dynamic Operations Technician,2.2.6,Ignored,You can't connect the port without connecting the back-end COM port!,,We need to quantify the optical GB feed!,,http://sandrine.com, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Dynamic Tactics Administrator,7.8.4,Ignored,"I'll parse the primary XSS port, that should port the XSS port!","Try to parse the IB panel, maybe it will parse the bluetooth panel!","The SMS bandwidth is down, synthesize the digital bandwidth so we can synthesize the SMS bandwidth!",,http://edna.biz, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +National Group Developer,6.2.0,Ignored,,,"If we calculate the hard drive, we can get to the CSS hard drive through the mobile CSS hard drive!","Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka,Yvette Ondricka",https://kane.net, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +Direct Identity Analyst,4.1.1,Ignored,,We need to connect the mobile SCSI matrix!,,,, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +District Functionality Architect,4.5.8,Ignored,,"I'll copy the solid state CSS port, that should port the CSS port!",,,, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Future Data Technician,2.5.1,Ignored,,,"I'll copy the auxiliary SQL array, that should array the SQL array!","Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan,Vera Durgan",, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +Dynamic Data Director,3.0.6,Ignored,,"If we back up the monitor, we can get to the AI monitor through the optical AI monitor!",,"Shaun Ryan,Shaun Ryan,Shaun Ryan,Shaun Ryan",http://karli.biz, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Direct Accountability Technician,3.5.8,Ignored,,,,,, +Customer Functionality Liaison,3.9.2,Ignored,,,,"Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic,Darin Macejkovic",https://lois.name, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Human Assurance Manager,3.0.6,Ignored,,,,"Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski,Marlene Powlowski",, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Legacy Group Architect,0.7.9,Ignored,"calculating the sensor won't do anything, we need to hack the primary JSON sensor!",You can't navigate the circuit without generating the back-end AI circuit!,,,https://burley.info, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c15dca1384bc8571.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c15dca1384bc8571.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c15dca1384bc8571.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c2ce0b528c8302fd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c2ce0b528c8302fd.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c2ce0b528c8302fd.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c3c94ec7f589dd25.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c3c94ec7f589dd25.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c3c94ec7f589dd25.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c66c3ed62df46f0b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c66c3ed62df46f0b.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c66c3ed62df46f0b.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c69cd1af58bec440.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c69cd1af58bec440.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c69cd1af58bec440.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c74006e896f892a5.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c74006e896f892a5.verified.txt new file mode 100644 index 00000000..f810a120 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c74006e896f892a5.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +International Factors Specialist,0.7.2,Ignored,,"I'll hack the auxiliary SMS card, that should card the SMS card!",,,http://rowan.com, +Global Implementation Engineer,6.0.7,Unknown,,"I'll calculate the 1080p HDD system, that should system the HDD system!",,,, +Regional Markets Administrator,4.2.4,Overwrite,,,,,, +Forward Tactics Orchestrator,8.3.1,Expression,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,,, +Senior Creative Supervisor,5.7.2,Ignored,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!",,,http://karl.com, +Future Creative Analyst,0.1.8,Unknown,,,,,, +Human Implementation Producer,0.9.1,Url,,,,,, +Legacy Intranet Agent,9.0.8,Unknown,"I'll navigate the open-source SSL sensor, that should sensor the SSL sensor!",We need to reboot the virtual RSS alarm!,,,https://burnice.info, +Global Usability Officer,2.2.4,File,,,,,, +Chief Integration Architect,1.6.8,Overwrite,,"The EXE matrix is down, parse the digital matrix so we can parse the EXE matrix!",,,http://maybelle.info, +Senior Creative Analyst,5.2.9,Unknown,"connecting the system won't do anything, we need to override the back-end SQL system!","If we synthesize the port, we can get to the ADP port through the neural ADP port!",,,, +Corporate Creative Strategist,5.8.9,Expression,We need to index the solid state HDD system!,You can't override the capacitor without overriding the mobile XML capacitor!,,,, +Chief Identity Supervisor,4.4.9,Ignored,"Try to back up the SAS alarm, maybe it will back up the virtual alarm!","Try to copy the PNG sensor, maybe it will copy the 1080p sensor!",,,https://roman.biz, +Principal Mobility Administrator,9.5.4,Url,"overriding the interface won't do anything, we need to connect the digital GB interface!","If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit!",,,http://gardner.net, +National Usability Manager,0.3.8,Unknown,"Use the 1080p USB alarm, then you can copy the 1080p alarm!",,,,, +Senior Quality Engineer,9.8.7,Ignored,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Future Accounts Designer,5.1.9,Expression,We need to navigate the wireless SAS pixel!,,,,, +Global Markets Administrator,8.6.8,Overwrite,You can't transmit the application without connecting the open-source SDD application!,"The AI hard drive is down, back up the 1080p hard drive so we can back up the AI hard drive!",,,https://lois.biz, +Principal Implementation Director,7.1.6,Ignored,We need to transmit the auxiliary FTP transmitter!,,,,http://pearlie.org, +Regional Data Strategist,3.5.3,Unknown,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Regional Implementation Technician,8.8.3,Ignored,,,,,, +District Branding Strategist,8.2.9,Unknown,,You can't quantify the capacitor without backing up the haptic SMTP capacitor!,,,https://schuyler.biz, +Corporate Assurance Executive,3.2.1,Overwrite,,"programming the driver won't do anything, we need to bypass the mobile PNG driver!",,,http://darrell.com, +Central Markets Developer,5.5.8,Expression,,You can't parse the port without bypassing the multi-byte GB port!,,,, +Chief Applications Facilitator,7.7.6,Url,,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,, +Legacy Group Agent,9.7.9,Overwrite,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",We need to index the bluetooth ADP array!,,,, +District Configuration Director,7.0.2,Ignored,You can't generate the bandwidth without parsing the mobile EXE bandwidth!,,,,https://flavio.info, +Forward Infrastructure Consultant,1.3.1,Unknown,,"Use the primary EXE array, then you can navigate the primary array!",,,https://anita.net, +Product Integration Facilitator,9.8.7,Url,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,,http://leilani.com, +District Tactics Specialist,3.4.5,File,,"Use the back-end SMS feed, then you can program the back-end feed!",,,http://stella.info, +Global Accounts Administrator,1.2.8,File,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!","The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,,https://jack.name, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,,,http://sylvan.net, +Human Factors Manager,3.2.3,Ignored,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Principal Optimization Technician,7.1.3,Url,,,,,, +Forward Identity Orchestrator,1.3.3,Url,"hacking the alarm won't do anything, we need to override the neural SSL alarm!",You can't parse the bandwidth without quantifying the wireless THX bandwidth!,,,, +Product Group Designer,5.2.3,Expression,"I'll reboot the solid state SMTP port, that should port the SMTP port!",,,,https://franco.net, +Global Directives Orchestrator,4.8.5,Overwrite,You can't calculate the application without calculating the auxiliary AI application!,,,,, +Senior Factors Administrator,3.3.4,Overwrite,,"Try to override the CSS microchip, maybe it will override the primary microchip!",,,https://eryn.com, +Senior Metrics Coordinator,9.3.9,Expression,,"I'll hack the optical COM alarm, that should alarm the COM alarm!",,,https://jed.com, +Principal Solutions Facilitator,9.1.8,Overwrite,,,,,https://greta.org, +District Quality Consultant,1.5.6,Url,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,http://nigel.biz, +Corporate Research Representative,9.0.5,Overwrite,,You can't override the bandwidth without navigating the auxiliary ADP bandwidth!,,,, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",,,http://helen.name, +Internal Division Agent,2.4.2,Expression,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Internal Infrastructure Strategist,7.2.2,Unknown,"I'll transmit the optical XML sensor, that should sensor the XML sensor!","I'll synthesize the haptic CSS array, that should array the CSS array!",,,http://ahmad.com, +Chief Implementation Assistant,6.1.2,Url,,,,,http://cathryn.biz, +Customer Integration Agent,4.7.6,Url,"I'll program the wireless IB program, that should program the IB program!",,,,http://jewel.name, +Senior Program Agent,0.4.3,Overwrite,"Try to index the COM bus, maybe it will index the auxiliary bus!","Use the primary SDD firewall, then you can navigate the primary firewall!",,,, +Future Assurance Planner,8.2.0,Ignored,,,,,, +Dynamic Group Consultant,5.8.4,File,,,,,, +Central Identity Analyst,8.9.6,Expression,,,,,http://leta.org, +Global Response Designer,0.2.2,Overwrite,,,,,https://macie.biz, +Corporate Infrastructure Executive,4.8.1,Url,,,,,https://justice.info, +Central Data Consultant,6.5.0,Overwrite,"If we index the alarm, we can get to the HDD alarm through the auxiliary HDD alarm!",,,,http://valentina.org, +Legacy Communications Producer,5.4.0,Expression,,"overriding the firewall won't do anything, we need to reboot the open-source COM firewall!",,,, +Global Functionality Coordinator,1.8.4,Url,,,,,https://alia.org, +Product Marketing Producer,6.1.8,Overwrite,"Try to parse the IB driver, maybe it will parse the 1080p driver!",We need to connect the bluetooth RSS application!,,,, +Regional Operations Producer,0.0.0,Unknown,,,,,, +Internal Configuration Coordinator,2.7.1,Overwrite,,"I'll synthesize the solid state RSS port, that should port the RSS port!",,,https://kameron.org, +Dynamic Configuration Administrator,4.3.8,Unknown,,,,,, +Dynamic Usability Engineer,0.2.8,Expression,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,,, +Human Brand Specialist,1.1.2,Ignored,,,,,, +Customer Accountability Associate,5.4.6,Url,You can't transmit the array without calculating the optical SAS array!,,,,, +Regional Paradigm Representative,0.8.7,Url,"If we back up the sensor, we can get to the TCP sensor through the 1080p TCP sensor!","Use the virtual HDD program, then you can program the virtual program!",,,, +Internal Web Orchestrator,3.1.3,Url,We need to hack the neural EXE capacitor!,,,,https://blair.info, +Principal Intranet Manager,3.8.8,File,,,,,, +Legacy Implementation Manager,1.8.4,Ignored,,,,,http://daphnee.name, +Chief Response Strategist,8.0.4,Ignored,,"The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm!",,,, +Principal Quality Developer,0.7.0,Ignored,We need to input the neural SMS microchip!,"If we reboot the pixel, we can get to the GB pixel through the bluetooth GB pixel!",,,, +Principal Group Analyst,4.3.6,Url,You can't parse the hard drive without indexing the redundant SCSI hard drive!,,,,, +Forward Branding Architect,2.3.8,Url,You can't parse the bus without bypassing the optical SAS bus!,"Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter!",,,, +Internal Operations Producer,5.8.9,File,,"Use the online SMTP pixel, then you can index the online pixel!",,,, +International Marketing Officer,7.2.8,Unknown,,,,,, +Product Marketing Officer,6.2.8,Url,,,,,, +Human Operations Technician,6.6.2,Overwrite,"Use the auxiliary SAS protocol, then you can navigate the auxiliary protocol!","I'll copy the auxiliary HDD bus, that should bus the HDD bus!",,,http://cielo.biz, +Dynamic Brand Architect,9.4.9,File,"I'll compress the back-end SSL system, that should system the SSL system!","The FTP firewall is down, connect the wireless firewall so we can connect the FTP firewall!",,,https://lonny.biz, +Regional Operations Analyst,7.0.8,Ignored,,"compressing the sensor won't do anything, we need to index the mobile ADP sensor!",,,http://rene.com, +Corporate Configuration Supervisor,9.5.0,Url,,,,,http://alejandrin.name, +Senior Metrics Assistant,8.7.4,Url,,"Use the solid state IB interface, then you can override the solid state interface!",,,, +Central Creative Representative,5.1.9,Url,,,,,http://asa.com, +Investor Directives Planner,4.7.2,Ignored,,,,,http://wiley.net, +Legacy Accounts Producer,3.6.5,Overwrite,,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,, +Internal Marketing Executive,2.0.0,Url,,,,,, +District Intranet Consultant,0.4.8,Unknown,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,,http://lorenzo.biz, +Central Quality Orchestrator,1.5.2,Expression,,,,,, +Senior Infrastructure Executive,4.1.8,Expression,,,,,, +Product Web Strategist,3.5.8,Ignored,,"overriding the circuit won't do anything, we need to copy the mobile AGP circuit!",,,, +Internal Assurance Assistant,6.8.3,Unknown,"synthesizing the pixel won't do anything, we need to compress the open-source SDD pixel!",You can't quantify the capacitor without navigating the optical SDD capacitor!,,,, +Global Paradigm Producer,1.8.4,Unknown,"If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol!",,,,https://london.biz, +Senior Communications Analyst,4.3.8,Url,"I'll quantify the cross-platform ADP driver, that should driver the ADP driver!","parsing the circuit won't do anything, we need to back up the digital RSS circuit!",,,http://shanna.com, +Global Markets Developer,5.4.8,File,,,,,https://wayne.name, +Dynamic Assurance Orchestrator,7.2.1,Url,"If we bypass the hard drive, we can get to the TCP hard drive through the digital TCP hard drive!",You can't bypass the firewall without hacking the haptic USB firewall!,,,http://gladyce.biz, +Internal Functionality Associate,0.0.0,Url,"The SAS interface is down, input the open-source interface so we can input the SAS interface!","Try to calculate the XML transmitter, maybe it will calculate the digital transmitter!",,,, +Chief Tactics Orchestrator,9.4.1,Ignored,You can't connect the driver without connecting the digital RSS driver!,"Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor!",,,https://anjali.name, +Dynamic Implementation Engineer,6.7.1,Url,We need to transmit the open-source EXE interface!,,,,http://margie.info, +Dynamic Interactions Facilitator,2.4.2,Unknown,"bypassing the transmitter won't do anything, we need to generate the multi-byte SQL transmitter!","The PNG alarm is down, synthesize the bluetooth alarm so we can synthesize the PNG alarm!",,,https://kian.net, +Dynamic Usability Orchestrator,9.8.0,Expression,We need to reboot the digital SAS circuit!,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c8559d7ea2a30415.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c8559d7ea2a30415.verified.txt new file mode 100644 index 00000000..2bb2a1ab --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c8559d7ea2a30415.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c901be68eebec1de.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c901be68eebec1de.verified.txt new file mode 100644 index 00000000..f6293d20 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c901be68eebec1de.verified.txt @@ -0,0 +1,19 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c90a715dda262c4a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c90a715dda262c4a.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c90a715dda262c4a.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c9303ec665bcd97b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c9303ec665bcd97b.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_c9303ec665bcd97b.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ca727a77cfc5e383.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ca727a77cfc5e383.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ca727a77cfc5e383.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cb04ddbca97767dc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cb04ddbca97767dc.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cb04ddbca97767dc.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cef14dd5df82672a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cef14dd5df82672a.verified.txt new file mode 100644 index 00000000..5fb26538 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cef14dd5df82672a.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cf678828defdac90.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cf678828defdac90.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_cf678828defdac90.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d1354ac496e5447b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d1354ac496e5447b.verified.txt new file mode 100644 index 00000000..3d61eeb6 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d1354ac496e5447b.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,"If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,,You can't compress the capacitor without copying the virtual USB capacitor!,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!",,"Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",,You can't connect the panel without bypassing the bluetooth SSL panel!,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!",,"The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,"I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!",,"If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!",,"If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Roy Collins,Roy Collins,Roy Collins",, +Human Operations Architect,9.7.9,Url,,,You can't generate the port without bypassing the cross-platform EXE port!,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d2ee3625b759026a.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d2ee3625b759026a.verified.txt new file mode 100644 index 00000000..cedd5544 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d2ee3625b759026a.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d61e5b7e9aa7da18.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d61e5b7e9aa7da18.verified.txt new file mode 100644 index 00000000..f64a1d01 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_d61e5b7e9aa7da18.verified.txt @@ -0,0 +1,87 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +Legacy Web Administrator,6.2.8,Expression,,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +Chief Directives Manager,2.4.3,File,,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Product Program Facilitator,7.3.5,File,,,,,, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Senior Marketing Architect,1.7.9,File,,,,,, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Senior Division Liaison,7.1.3,Unknown,,,,,, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +National Intranet Technician,8.0.0,Overwrite,,,,,, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Principal Identity Administrator,0.5.2,File,,,,,, +Dynamic Integration Architect,1.6.3,File,,,,,, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +National Data Director,0.9.6,Unknown,,,,,, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +National Creative Facilitator,0.0.1,Url,,,,,, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +Dynamic Tactics Developer,7.5.4,File,,,,,, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_dad04f0558a72869.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_dad04f0558a72869.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_dad04f0558a72869.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_db1e767d8e540c13.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_db1e767d8e540c13.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_db1e767d8e540c13.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_de1d5a9f85b34081.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_de1d5a9f85b34081.verified.txt new file mode 100644 index 00000000..20bef6b1 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_de1d5a9f85b34081.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Url,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,"Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson,Sandy Halvorson",, +Customer Solutions Facilitator,1.1.8,Unknown,,,,"Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis,Audrey Kuvalis",https://alize.info, +Chief Configuration Orchestrator,9.6.8,Unknown,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!","If we connect the firewall, we can get to the EXE firewall through the neural EXE firewall!",,Deborah Sanford,http://lucius.biz, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Expression,,You can't quantify the capacitor without hacking the neural SMS capacitor!,,"Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger,Anna Senger",https://alaina.biz, +Internal Optimization Orchestrator,8.4.2,Expression,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,,, +Human Response Associate,8.7.3,Overwrite,,You can't compress the capacitor without copying the virtual USB capacitor!,,,http://corrine.com, +Product Branding Specialist,3.4.0,File,,"Try to reboot the JSON alarm, maybe it will reboot the optical alarm!",,,, +Internal Response Officer,4.5.2,Url,"If we navigate the feed, we can get to the JSON feed through the back-end JSON feed!","Try to generate the HTTP protocol, maybe it will generate the auxiliary protocol!",,,https://jorge.com, +Customer Accounts Assistant,9.6.3,Unknown,"The SSL application is down, reboot the bluetooth application so we can reboot the SSL application!",You can't connect the panel without bypassing the bluetooth SSL panel!,,,https://kolby.com, +Senior Tactics Assistant,8.4.9,Url,"copying the capacitor won't do anything, we need to back up the optical SMS capacitor!","The XML transmitter is down, parse the bluetooth transmitter so we can parse the XML transmitter!",,,, +Forward Optimization Coordinator,8.8.2,Ignored,,,,,https://brannon.com, +Internal Creative Specialist,2.1.3,File,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!",,"Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,File,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,,http://martine.info, +National Communications Orchestrator,4.5.1,Unknown,"The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit!",,,,, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Interactions Consultant,5.2.6,Ignored,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!",,"Roy Collins,Roy Collins,Roy Collins",, +Human Operations Architect,9.7.9,Url,,You can't generate the port without bypassing the cross-platform EXE port!,,"Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins,Jeffrey Collins",http://jaquan.com, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e21c38ef1ff70e7d.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e21c38ef1ff70e7d.verified.txt new file mode 100644 index 00000000..a2d6f70d --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e21c38ef1ff70e7d.verified.txt @@ -0,0 +1,80 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, +Internal Functionality Manager,1.9.2,Expression,"If we parse the matrix, we can get to the USB matrix through the back-end USB matrix!","The THX program is down, transmit the redundant program so we can transmit the THX program!",,,https://clotilde.biz, +Human Intranet Designer,1.0.8,Unknown,"indexing the hard drive won't do anything, we need to hack the haptic AGP hard drive!","If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn,Gordon Hahn",, +Global Usability Officer,2.2.4,Expression,,,"parsing the feed won't do anything, we need to input the wireless SAS feed!",Michelle Johnston,, +Internal Metrics Planner,8.9.0,Unknown,,,,"Mandy Emard,Mandy Emard,Mandy Emard,Mandy Emard",http://laney.org, +Central Factors Executive,8.2.0,Overwrite,,,,,https://francesco.name, +Regional Data Strategist,3.5.3,Url,"synthesizing the firewall won't do anything, we need to navigate the digital AI firewall!","connecting the panel won't do anything, we need to bypass the wireless AGP panel!",,,https://charlie.org, +Dynamic Configuration Assistant,3.2.1,File,,"connecting the application won't do anything, we need to bypass the mobile ADP application!","I'll synthesize the bluetooth FTP system, that should system the FTP system!","Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman,Bert Stroman",, +Legacy Response Analyst,9.2.7,Url,,"Use the multi-byte GB driver, then you can program the multi-byte driver!",,"Dixie Rath,Dixie Rath,Dixie Rath,Dixie Rath",http://martine.info, +Global Communications Designer,0.6.3,File,,,,,, +Legacy Creative Technician,0.6.7,Url,,"I'll copy the auxiliary PCI panel, that should panel the PCI panel!",,"Guy Heaney,Guy Heaney",, +Human Markets Designer,3.0.2,Url,,,"I'll hack the cross-platform SSL array, that should array the SSL array!",Shari Yost,https://jessy.biz, +Senior Quality Architect,4.5.6,Overwrite,,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh,Sonya Walsh",https://norene.com, +Direct Assurance Supervisor,4.1.8,Expression,,You can't bypass the sensor without transmitting the neural JSON sensor!,,"Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy",https://aniyah.org, +Lead Mobility Planner,5.7.8,Unknown,,,,"Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder,Daryl Greenfelder",https://roberta.biz, +Investor Creative Architect,8.2.4,Overwrite,,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,, +Global Security Executive,3.5.3,Expression,,,,,https://rose.com, +Human Division Agent,2.2.7,Unknown,,"The PNG monitor is down, calculate the multi-byte monitor so we can calculate the PNG monitor!",You can't navigate the port without programming the cross-platform ADP port!,,https://laurence.net, +Dynamic Usability Engineer,0.2.8,Unknown,,"Use the haptic XSS capacitor, then you can reboot the haptic capacitor!",,Miriam Nolan,, +Corporate Identity Developer,5.1.4,File,"I'll compress the open-source GB driver, that should driver the GB driver!","Use the cross-platform CSS circuit, then you can bypass the cross-platform circuit!",,,http://julian.net, +Legacy Implementation Manager,1.8.4,Unknown,,,"If we calculate the protocol, we can get to the SAS protocol through the virtual SAS protocol!","Elena Becker,Elena Becker,Elena Becker",http://daphnee.name, +National Communications Administrator,8.4.8,File,,"I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive!",,,, +Direct Configuration Strategist,6.3.4,Expression,You can't reboot the matrix without navigating the optical SDD matrix!,,,,https://rachelle.info, +Corporate Accounts Engineer,8.0.1,Overwrite,,"I'll bypass the online FTP alarm, that should alarm the FTP alarm!","If we copy the array, we can get to the PCI array through the optical PCI array!",,, +Lead Intranet Strategist,0.0.2,File,We need to parse the virtual SMTP program!,"backing up the array won't do anything, we need to transmit the solid state TCP array!","Use the digital HTTP card, then you can reboot the digital card!","Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich,Marcus Ullrich",https://madilyn.name, +Dynamic Program Analyst,4.1.4,Expression,,,,"Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling",http://laurianne.com, +Human Web Director,1.4.7,Expression,,,,,http://bernadine.biz, +Future Division Planner,7.0.4,Unknown,,,"If we navigate the pixel, we can get to the SQL pixel through the mobile SQL pixel!",,https://frederique.name, +Product Intranet Engineer,7.2.5,Expression,,,"If we index the bandwidth, we can get to the XML bandwidth through the back-end XML bandwidth!",,, +Regional Quality Planner,4.8.5,Url,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,,https://jonathon.info, +Dynamic Program Supervisor,1.4.5,File,You can't bypass the firewall without hacking the haptic USB firewall!,"Use the wireless HTTP sensor, then you can program the wireless sensor!",,,, +Future Brand Supervisor,0.0.4,File,,,"The FTP hard drive is down, transmit the online hard drive so we can transmit the FTP hard drive!",,https://princess.biz, +National Communications Agent,4.1.5,Unknown,,,,,http://leopoldo.name, +Chief Mobility Consultant,6.5.6,Expression,,"The XSS driver is down, calculate the optical driver so we can calculate the XSS driver!",,"Bert Walsh,Bert Walsh",http://earlene.info, +Direct Quality Administrator,2.4.3,Unknown,,We need to calculate the solid state AI monitor!,,,http://michale.info, +Principal Metrics Orchestrator,9.1.2,Expression,"Use the redundant EXE feed, then you can navigate the redundant feed!","If we program the array, we can get to the AGP array through the digital AGP array!",,,, +Global Configuration Planner,5.7.8,Overwrite,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!","Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel,Mable Thiel",, +Investor Paradigm Consultant,0.0.6,Expression,"bypassing the firewall won't do anything, we need to hack the solid state CSS firewall!","Use the open-source CSS pixel, then you can program the open-source pixel!",We need to calculate the back-end JBOD array!,"Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm,Gordon Boehm",, +Global Creative Specialist,4.2.5,Unknown,"If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth!",,"The SMS firewall is down, quantify the optical firewall so we can quantify the SMS firewall!",Edwin Sporer,http://frances.com, +Central Division Engineer,9.8.9,Overwrite,,,We need to transmit the neural RSS pixel!,"Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson,Allan Thompson",https://michale.com, +National Marketing Manager,7.0.2,Overwrite,,"I'll quantify the online XSS monitor, that should monitor the XSS monitor!",You can't calculate the panel without compressing the 1080p SCSI panel!,"Nadine Quigley,Nadine Quigley,Nadine Quigley,Nadine Quigley",, +Forward Markets Director,7.0.4,Overwrite,You can't generate the interface without quantifying the mobile FTP interface!,"Use the digital SMTP bandwidth, then you can generate the digital bandwidth!",,"Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze,Lindsay Kunze",, +Customer Intranet Agent,3.2.8,Url,"Use the haptic IB alarm, then you can compress the haptic alarm!",,You can't index the circuit without hacking the open-source PCI circuit!,,, +Human Web Orchestrator,0.7.5,File,We need to compress the open-source RSS bus!,"If we override the panel, we can get to the USB panel through the auxiliary USB panel!","I'll calculate the bluetooth EXE feed, that should feed the EXE feed!",,https://monserrat.biz, +District Optimization Technician,5.2.3,Overwrite,,,"I'll generate the solid state FTP alarm, that should alarm the FTP alarm!",,https://douglas.info, +Global Operations Director,3.1.5,Expression,"bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth!",,,"Gregg Bins,Gregg Bins,Gregg Bins",, +Regional Division Architect,8.0.6,File,You can't index the protocol without bypassing the neural PNG protocol!,"Try to reboot the FTP feed, maybe it will reboot the open-source feed!",,"Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger,Tyrone Reinger",https://hester.com, +Forward Accounts Consultant,8.9.0,Expression,,,,"Tricia Spinka,Tricia Spinka,Tricia Spinka,Tricia Spinka",, +Customer Quality Designer,3.7.5,File,,"I'll parse the wireless RAM driver, that should driver the RAM driver!","Try to connect the RAM driver, maybe it will connect the redundant driver!","Loren Raynor,Loren Raynor",https://elza.info, +Senior Applications Representative,0.0.8,Expression,You can't back up the protocol without synthesizing the multi-byte CSS protocol!,,"The SAS bus is down, program the neural bus so we can program the SAS bus!",,, +Senior Communications Administrator,9.9.1,Overwrite,You can't navigate the protocol without copying the back-end AGP protocol!,,,,https://cora.org, +District Metrics Strategist,9.8.7,Url,"The HTTP interface is down, generate the haptic interface so we can generate the HTTP interface!","The EXE alarm is down, reboot the multi-byte alarm so we can reboot the EXE alarm!","I'll connect the bluetooth PCI program, that should program the PCI program!","Whitney Runte,Whitney Runte,Whitney Runte",https://rhiannon.biz, +Lead Branding Consultant,7.5.0,Expression,,"Try to program the SMS firewall, maybe it will program the open-source firewall!","If we synthesize the firewall, we can get to the ADP firewall through the redundant ADP firewall!",,, +Forward Research Developer,5.8.2,Url,,"connecting the capacitor won't do anything, we need to parse the virtual TCP capacitor!",,,https://talia.biz, +Investor Data Specialist,4.2.9,Url,,,,"Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith,Iris Smith",, +District Creative Director,3.8.2,File,,"If we bypass the array, we can get to the RSS array through the solid state RSS array!","Use the open-source RAM matrix, then you can navigate the open-source matrix!","Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole,Larry Cole",, +Regional Accounts Consultant,6.9.4,File,"I'll transmit the redundant JBOD monitor, that should monitor the JBOD monitor!","Try to compress the XML bus, maybe it will compress the 1080p bus!",,,https://albertha.biz, +Dynamic Markets Supervisor,4.6.5,Expression,"synthesizing the application won't do anything, we need to transmit the multi-byte HTTP application!","Use the auxiliary SSL firewall, then you can quantify the auxiliary firewall!",You can't override the driver without generating the back-end SDD driver!,,, +Human Paradigm Strategist,5.3.1,File,,"copying the circuit won't do anything, we need to back up the cross-platform RSS circuit!",,,, +Regional Factors Technician,8.0.3,Unknown,,,,,http://jeremy.info, +Human Markets Orchestrator,8.4.7,Overwrite,,You can't reboot the pixel without bypassing the multi-byte SCSI pixel!,"Use the haptic FTP matrix, then you can parse the haptic matrix!","Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier,Lamar Cormier",, +Senior Metrics Associate,5.6.0,Overwrite,,,,"Sylvia Donnelly,Sylvia Donnelly",http://arnulfo.org, +District Paradigm Officer,3.5.7,Url,,,,"Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb,Valerie Gottlieb",, +Principal Optimization Representative,6.6.7,Expression,"If we navigate the port, we can get to the JBOD port through the wireless JBOD port!",You can't navigate the card without programming the bluetooth COM card!,,,https://shana.info, +Internal Branding Executive,9.6.0,Overwrite,,We need to parse the back-end TCP protocol!,,,, +Central Configuration Director,7.9.7,Expression,We need to back up the haptic SMS protocol!,,,"Desiree Ziemann,Desiree Ziemann",, +Product Mobility Supervisor,5.0.7,Url,We need to parse the redundant RAM firewall!,,You can't parse the circuit without compressing the wireless XML circuit!,"Ismael Lindgren,Ismael Lindgren,Ismael Lindgren",, +Chief Branding Agent,5.8.6,Overwrite,"overriding the panel won't do anything, we need to copy the multi-byte SCSI panel!",,"Try to program the AGP monitor, maybe it will program the open-source monitor!",,, +Future Solutions Coordinator,3.7.3,Unknown,,We need to hack the open-source THX firewall!,"Use the redundant SDD sensor, then you can index the redundant sensor!","Homer Hauck,Homer Hauck,Homer Hauck",https://modesto.com, +Internal Markets Executive,5.9.1,File,,,You can't compress the transmitter without copying the primary JSON transmitter!,"Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel,Hugo Littel",, +Central Interactions Supervisor,0.2.1,File,You can't override the array without indexing the haptic JBOD array!,,,"Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack,Tammy Lebsack",https://noemi.org, +Future Branding Liaison,6.5.8,File,"If we navigate the alarm, we can get to the XML alarm through the optical XML alarm!",,"The AI port is down, parse the wireless port so we can parse the AI port!",,, +Customer Accounts Strategist,8.9.7,File,,,"I'll synthesize the cross-platform SMTP system, that should system the SMTP system!","Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke,Geraldine Kerluke",https://victoria.info, +Global Mobility Consultant,9.3.4,Overwrite,,,You can't parse the pixel without copying the 1080p SMTP pixel!,"Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen,Ashley Hansen",, +Chief Operations Developer,9.5.4,Overwrite,You can't hack the monitor without generating the bluetooth SSL monitor!,,,"Jamie Fisher,Jamie Fisher",, +Senior Configuration Planner,0.2.3,Overwrite,,,We need to connect the open-source AGP hard drive!,"Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor,Alvin Raynor",http://fleta.info, +Principal Quality Officer,8.4.2,File,,,"The JBOD microchip is down, bypass the haptic microchip so we can bypass the JBOD microchip!","Hugo Nikolaus,Hugo Nikolaus,Hugo Nikolaus",, +Future Quality Producer,5.5.1,File,,,You can't reboot the port without navigating the redundant RAM port!,,, +Investor Mobility Developer,8.9.3,Unknown,You can't copy the hard drive without generating the primary RAM hard drive!,"Try to generate the TCP panel, maybe it will generate the 1080p panel!",,"Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie,Darrel McKenzie",https://gage.biz, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e248d76be0448545.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e248d76be0448545.verified.txt new file mode 100644 index 00000000..31552eaf --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e248d76be0448545.verified.txt @@ -0,0 +1,5 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Planner,1.0.3,Url,"I'll input the cross-platform AGP system, that should system the AGP system!",,,,https://tito.info, +Senior Markets Orchestrator,4.0.0,Unknown,We need to quantify the multi-byte COM application!,,,,, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e59f56dcf5b2b765.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e59f56dcf5b2b765.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e59f56dcf5b2b765.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e5a427e92f6d4f67.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e5a427e92f6d4f67.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e5a427e92f6d4f67.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e6f536a694634813.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e6f536a694634813.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e6f536a694634813.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e73a6b4d3425e058.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e73a6b4d3425e058.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e73a6b4d3425e058.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e90d78f4407df312.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e90d78f4407df312.verified.txt new file mode 100644 index 00000000..33363a45 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e90d78f4407df312.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Unknown,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e9209be662a55f55.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e9209be662a55f55.verified.txt new file mode 100644 index 00000000..194a04fa --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_e9209be662a55f55.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, +Dynamic Branding Facilitator,8.3.2,Url,,,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,, +Senior Division Liaison,7.1.3,File,,"If we transmit the transmitter, we can get to the SSL transmitter through the back-end SSL transmitter!","I'll copy the auxiliary SCSI card, that should card the SCSI card!",,, +District Directives Orchestrator,1.2.9,Expression,,"The RAM alarm is down, reboot the solid state alarm so we can reboot the RAM alarm!",We need to input the online JSON application!,,http://toney.net, +Principal Intranet Liaison,5.1.0,Unknown,"I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor!","Try to override the HDD pixel, maybe it will override the bluetooth pixel!",,,http://neva.info, +Product Communications Producer,8.0.6,Url,"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!",,,,, +Investor Data Designer,7.1.3,File,"The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive!","If we bypass the panel, we can get to the HDD panel through the cross-platform HDD panel!",,,, +Human Interactions Consultant,5.2.6,Unknown,"If we transmit the application, we can get to the SMS application through the primary SMS application!","If we generate the microchip, we can get to the SMTP microchip through the wireless SMTP microchip!","Try to compress the TCP card, maybe it will compress the back-end card!",,, +National Response Director,4.5.6,Url,You can't hack the feed without connecting the optical SSL feed!,,"programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive!",,, +Human Accounts Representative,4.5.5,File,,,"The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall!",,https://darien.net, +Customer Configuration Manager,1.6.8,Expression,"I'll program the online RSS card, that should card the RSS card!",,You can't connect the bus without connecting the open-source SDD bus!,,http://sylvan.net, +Human Factors Manager,3.2.3,Unknown,We need to back up the mobile SAS driver!,We need to input the neural SQL program!,,,, +Senior Web Director,5.6.2,Expression,,,,,http://leonel.com, +International Applications Architect,5.6.6,Unknown,"If we index the card, we can get to the XSS card through the neural XSS card!","Use the cross-platform SQL transmitter, then you can navigate the cross-platform transmitter!","The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive!",,https://abelardo.com, +Forward Optimization Director,6.4.3,Overwrite,"programming the driver won't do anything, we need to calculate the primary SMTP driver!",,You can't navigate the system without programming the primary SAS system!,,, +Dynamic Tactics Supervisor,3.8.2,Ignored,,,,,, +Principal Implementation Developer,7.0.7,Ignored,,,"I'll parse the primary USB interface, that should interface the USB interface!",,, +Direct Branding Agent,8.8.0,Unknown,,"If we synthesize the matrix, we can get to the PCI matrix through the back-end PCI matrix!",We need to transmit the primary RSS application!,,, +Internal Brand Manager,0.8.2,Expression,You can't synthesize the firewall without bypassing the neural SMS firewall!,"If we transmit the card, we can get to the USB card through the digital USB card!","hacking the driver won't do anything, we need to input the digital SAS driver!",,http://roderick.org, +Chief Factors Supervisor,5.2.2,Overwrite,,,,,http://helga.com, +National Intranet Designer,4.6.5,Ignored,We need to connect the bluetooth RAM application!,"If we copy the array, we can get to the SAS array through the neural SAS array!",You can't bypass the firewall without indexing the multi-byte COM firewall!,,http://helen.name, +Internal Division Agent,2.4.2,Overwrite,,"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!",,,, +Customer Metrics Developer,2.2.9,Url,,,"I'll transmit the optical XML sensor, that should sensor the XML sensor!",,, +National Markets Representative,2.8.6,Overwrite,,"Try to quantify the GB interface, maybe it will quantify the digital interface!",We need to compress the redundant SQL system!,,, +Customer Integration Agent,3.6.0,Ignored,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +National Infrastructure Supervisor,7.8.3,File,,"Try to back up the COM driver, maybe it will back up the bluetooth driver!",,,https://asha.com, +Senior Security Consultant,2.7.5,Unknown,,,We need to bypass the online COM matrix!,,http://adelbert.biz, +Senior Brand Architect,0.9.4,Expression,,"I'll program the wireless HDD pixel, that should pixel the HDD pixel!",,,, +Senior Operations Engineer,5.0.2,Overwrite,"overriding the interface won't do anything, we need to override the virtual THX interface!",,We need to hack the primary EXE transmitter!,,, +District Accountability Consultant,5.4.8,Ignored,"synthesizing the application won't do anything, we need to synthesize the online CSS application!","If we quantify the bus, we can get to the SMS bus through the open-source SMS bus!",,,https://leola.org, +Legacy Web Consultant,3.0.6,Url,,"I'll override the neural XML application, that should application the XML application!","Try to input the GB pixel, maybe it will input the wireless pixel!",,, +Global Factors Supervisor,5.6.4,File,"Try to index the ADP port, maybe it will index the auxiliary port!",,You can't bypass the matrix without backing up the multi-byte USB matrix!,,http://jamal.net, +Dynamic Integration Architect,1.6.3,File,,"The RAM feed is down, copy the neural feed so we can copy the RAM feed!","parsing the alarm won't do anything, we need to compress the auxiliary CSS alarm!",,, +Forward Integration Specialist,8.7.1,Url,,,,,http://jordon.net, +Future Accountability Specialist,3.2.9,Expression,You can't synthesize the application without hacking the wireless AGP application!,"programming the system won't do anything, we need to reboot the multi-byte SDD system!",,,https://jamey.org, +Legacy Web Facilitator,4.4.3,Ignored,"Use the redundant AGP microchip, then you can override the redundant microchip!","Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,http://frederick.com, +International Factors Agent,0.6.1,Overwrite,,"If we connect the program, we can get to the SQL program through the digital SQL program!",,,https://luigi.org, +Customer Quality Orchestrator,3.1.5,Unknown,"If we generate the microchip, we can get to the EXE microchip through the online EXE microchip!",,"synthesizing the array won't do anything, we need to back up the cross-platform USB array!",,https://lupe.name, +Product Usability Supervisor,8.7.1,Overwrite,You can't copy the pixel without generating the solid state TCP pixel!,We need to transmit the open-source SCSI microchip!,"The AI feed is down, generate the back-end feed so we can generate the AI feed!",,http://abdullah.net, +Future Operations Assistant,9.9.1,Expression,,,,,, +Principal Accounts Officer,2.1.8,Unknown,"Try to calculate the SSL program, maybe it will calculate the multi-byte program!",,"Try to copy the HTTP capacitor, maybe it will copy the primary capacitor!",,, +Forward Web Developer,9.4.5,Ignored,"If we transmit the feed, we can get to the SDD feed through the wireless SDD feed!",,,,https://mikayla.com, +Product Assurance Facilitator,3.5.9,Unknown,,,,,, +Senior Integration Assistant,6.4.2,Ignored,We need to hack the cross-platform USB circuit!,"I'll input the virtual SMTP firewall, that should firewall the SMTP firewall!","Try to navigate the USB bus, maybe it will navigate the online bus!",,, +Investor Branding Analyst,6.5.4,Unknown,,"The GB program is down, program the back-end program so we can program the GB program!",,,, +Principal Interactions Specialist,4.2.6,Expression,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Product Accountability Designer,6.6.6,File,"Try to transmit the CSS firewall, maybe it will transmit the open-source firewall!",,"If we back up the pixel, we can get to the PCI pixel through the neural PCI pixel!",,, +Product Communications Supervisor,3.2.8,Url,"The HTTP sensor is down, parse the online sensor so we can parse the HTTP sensor!","I'll compress the open-source THX matrix, that should matrix the THX matrix!",,,, +Dynamic Quality Director,7.7.5,Expression,,,"Try to program the EXE protocol, maybe it will program the online protocol!",,, +Central Infrastructure Executive,5.1.8,Url,"Use the solid state TCP driver, then you can generate the solid state driver!",,,,, +Senior Metrics Assistant,8.7.4,Ignored,,"Use the solid state IB interface, then you can override the solid state interface!","If we compress the panel, we can get to the HDD panel through the digital HDD panel!",,, +National Usability Engineer,4.5.9,Url,We need to program the redundant HDD port!,,"transmitting the sensor won't do anything, we need to back up the back-end HTTP sensor!",,, +Lead Accountability Technician,3.1.4,Unknown,,,,,https://bridgette.com, +Lead Program Engineer,4.5.7,Unknown,,"The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol!",,,, +Dynamic Web Officer,5.2.0,Expression,,,We need to bypass the open-source PNG system!,,, +Regional Optimization Strategist,4.9.4,Ignored,,,"I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth!",,, +Principal Markets Planner,8.1.0,Unknown,,"Try to compress the SCSI driver, maybe it will compress the haptic driver!","Try to bypass the HTTP application, maybe it will bypass the digital application!",,https://demetris.org, +Human Metrics Architect,0.2.5,Overwrite,"Try to compress the FTP bandwidth, maybe it will compress the wireless bandwidth!","Use the haptic AGP protocol, then you can program the haptic protocol!",,,https://rickie.net, +Chief Identity Coordinator,3.0.3,Unknown,,"Try to reboot the USB sensor, maybe it will reboot the primary sensor!","The SQL bus is down, back up the solid state bus so we can back up the SQL bus!",,, +Direct Accountability Manager,4.4.2,Url,,You can't index the hard drive without transmitting the cross-platform AI hard drive!,"If we synthesize the array, we can get to the XSS array through the solid state XSS array!",,, +Global Markets Developer,5.4.8,Unknown,,,"Use the solid state SMTP transmitter, then you can generate the solid state transmitter!",,https://wayne.name, +Internal Branding Producer,6.7.2,Expression,You can't back up the driver without quantifying the digital AI driver!,,,,, +Dynamic Functionality Architect,8.0.1,Ignored,,,We need to connect the auxiliary HTTP protocol!,,http://sally.net, +Forward Branding Associate,0.1.9,Url,"I'll bypass the back-end RSS application, that should application the RSS application!","Use the online XML firewall, then you can back up the online firewall!",,,, +Global Branding Manager,2.6.7,Ignored,"If we generate the panel, we can get to the SMTP panel through the online SMTP panel!",,,,, +Product Mobility Producer,1.2.9,Expression,"I'll copy the neural COM application, that should application the COM application!","If we transmit the monitor, we can get to the IB monitor through the haptic IB monitor!","Use the wireless THX port, then you can navigate the wireless port!",,http://jana.biz, +Human Factors Director,9.5.8,Unknown,"Try to back up the SSL array, maybe it will back up the optical array!","Use the virtual SMS bandwidth, then you can override the virtual bandwidth!",You can't synthesize the bandwidth without programming the solid state XSS bandwidth!,,, +Senior Metrics Associate,6.5.8,Expression,,"programming the matrix won't do anything, we need to generate the primary HDD matrix!",,,, +Product Security Manager,3.4.7,Ignored,,,"I'll parse the primary XSS port, that should port the XSS port!",,http://shaun.biz, +Future Branding Liaison,1.0.5,Unknown,You can't copy the hard drive without navigating the redundant SSL hard drive!,You can't reboot the interface without overriding the neural RSS interface!,,,http://jimmy.com, +Internal Intranet Designer,3.3.6,Expression,"If we program the array, we can get to the AGP array through the digital AGP array!",,,,, +Global Configuration Planner,5.7.8,Expression,"compressing the bandwidth won't do anything, we need to synthesize the primary SMTP bandwidth!",We need to connect the multi-byte PCI capacitor!,"overriding the matrix won't do anything, we need to synthesize the redundant THX matrix!",,, +Lead Operations Designer,8.2.8,Url,,You can't bypass the capacitor without backing up the optical THX capacitor!,,,http://aimee.info, +Regional Markets Architect,6.4.6,Ignored,,"I'll hack the haptic JSON matrix, that should matrix the JSON matrix!","generating the transmitter won't do anything, we need to copy the bluetooth COM transmitter!",,, +Global Implementation Engineer,0.6.8,Url,"Try to navigate the SMTP panel, maybe it will navigate the multi-byte panel!",,"quantifying the matrix won't do anything, we need to input the wireless SQL matrix!",,http://woodrow.com, +Lead Division Director,8.6.8,File,,,We need to program the auxiliary CSS driver!,,http://oral.org, +Global Response Specialist,8.5.5,Url,You can't navigate the firewall without synthesizing the back-end EXE firewall!,"I'll index the solid state CSS hard drive, that should hard drive the CSS hard drive!",,,http://dena.com, +Chief Brand Designer,8.2.4,File,"Use the cross-platform ADP alarm, then you can back up the cross-platform alarm!",,,,, +Investor Identity Manager,7.9.5,Unknown,,You can't index the microchip without backing up the back-end CSS microchip!,"If we input the monitor, we can get to the HTTP monitor through the open-source HTTP monitor!",,, +Dynamic Marketing Consultant,8.6.3,Ignored,,You can't back up the protocol without indexing the neural SQL protocol!,"I'll transmit the multi-byte CSS pixel, that should pixel the CSS pixel!",,, +Global Security Liaison,6.1.8,Expression,,,,,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ea74c9e660e2895b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ea74c9e660e2895b.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ea74c9e660e2895b.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_eacabf00e4b749fd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_eacabf00e4b749fd.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_eacabf00e4b749fd.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ed5c9d655b79349f.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ed5c9d655b79349f.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ed5c9d655b79349f.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ee136d6c797a9dc7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ee136d6c797a9dc7.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ee136d6c797a9dc7.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ee378a191a79f3cc.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ee378a191a79f3cc.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ee378a191a79f3cc.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ef70cbe9982f555b.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ef70cbe9982f555b.verified.txt new file mode 100644 index 00000000..cedd5544 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_ef70cbe9982f555b.verified.txt @@ -0,0 +1,2 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Overwrite,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!","Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka,Rochelle Ondricka",, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f0041905a899986c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f0041905a899986c.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f0041905a899986c.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f23c76ac03bd0a85.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f23c76ac03bd0a85.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f23c76ac03bd0a85.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f333edff0ab5ed69.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f333edff0ab5ed69.verified.txt new file mode 100644 index 00000000..6793309b --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f333edff0ab5ed69.verified.txt @@ -0,0 +1,21 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,Expression,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,"The USB transmitter is down, generate the bluetooth transmitter so we can generate the USB transmitter!",,, +Principal Markets Executive,4.2.2,Unknown,"I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor!",,,,http://amelia.info, +Lead Solutions Officer,8.2.5,File,,,"Try to override the ADP hard drive, maybe it will override the mobile hard drive!",,https://noel.name, +International Program Director,3.1.6,Ignored,"hacking the capacitor won't do anything, we need to compress the digital AGP capacitor!","Use the virtual CSS protocol, then you can input the virtual protocol!",,,https://ewell.name, +Human Markets Coordinator,3.4.4,Expression,,,,,, +International Data Director,6.8.3,Expression,,,"quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter!",,, +Senior Creative Supervisor,5.7.2,Unknown,"If we connect the protocol, we can get to the PNG protocol through the haptic PNG protocol!","Use the mobile CSS capacitor, then you can transmit the mobile capacitor!","The FTP sensor is down, transmit the cross-platform sensor so we can transmit the FTP sensor!",,http://karl.com, +Corporate Division Analyst,2.8.5,Unknown,,We need to connect the primary AGP microchip!,We need to hack the auxiliary USB panel!,,, +Future Tactics Producer,5.8.9,Unknown,"navigating the pixel won't do anything, we need to parse the back-end IB pixel!",,,,, +Customer Directives Architect,2.3.6,Unknown,,,,,https://kira.net, +National Tactics Architect,6.7.8,Unknown,We need to parse the auxiliary SAS capacitor!,,,,https://margaret.net, +Principal Usability Representative,9.1.3,Url,,You can't quantify the capacitor without hacking the neural SMS capacitor!,"I'll quantify the primary USB firewall, that should firewall the USB firewall!",,https://alaina.biz, +Internal Security Administrator,7.6.2,File,,"I'll generate the optical COM protocol, that should protocol the COM protocol!",,,http://isabell.info, +Central Usability Associate,4.8.3,File,,,,,http://uriel.info, +Future Accounts Producer,9.4.3,File,You can't override the port without indexing the neural THX port!,"Use the 1080p XSS matrix, then you can generate the 1080p matrix!",,,, +Senior Accountability Specialist,0.8.7,Expression,You can't connect the capacitor without copying the back-end SSL capacitor!,"Try to navigate the PCI driver, maybe it will navigate the mobile driver!","If we copy the monitor, we can get to the USB monitor through the haptic USB monitor!",,, +Central Interactions Supervisor,8.1.9,Expression,,"Try to parse the PNG panel, maybe it will parse the haptic panel!",,,https://eldon.com, +Lead Division Associate,5.3.4,Url,"The SQL bandwidth is down, compress the neural bandwidth so we can compress the SQL bandwidth!","calculating the interface won't do anything, we need to input the solid state SAS interface!","Use the optical TCP microchip, then you can calculate the optical microchip!",,https://richie.name, +National Mobility Liaison,6.7.4,File,,,,,https://kaia.com, +Investor Optimization Orchestrator,3.7.9,Unknown,You can't input the circuit without hacking the optical SAS circuit!,You can't program the array without connecting the neural SSL array!,"Try to hack the SMS bandwidth, maybe it will hack the haptic bandwidth!",,, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f409fdc7bfada99c.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f409fdc7bfada99c.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f409fdc7bfada99c.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f53b5f6a9bec98a3.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f53b5f6a9bec98a3.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f53b5f6a9bec98a3.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f905f35128dc8a08.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f905f35128dc8a08.verified.txt new file mode 100644 index 00000000..d3750857 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_f905f35128dc8a08.verified.txt @@ -0,0 +1,101 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context +Legacy Metrics Planner,9.5.0,File,"Use the open-source JBOD matrix, then you can synthesize the open-source matrix!",,,,, +Dynamic Implementation Orchestrator,3.1.0,File,,,,,http://ayden.info, +Chief Identity Designer,9.2.3,Expression,,,,,, +Lead Implementation Assistant,2.5.5,Overwrite,,,,,https://kelley.info, +Chief Response Associate,7.2.5,Expression,We need to back up the neural RAM monitor!,,,,, +International Data Representative,3.5.7,Ignored,"Try to synthesize the COM port, maybe it will synthesize the haptic port!",,,,http://dakota.com, +Legacy Web Administrator,6.2.8,Expression,,,,,, +District Program Planner,5.5.6,Ignored,,,,,http://virgil.name, +Principal Branding Assistant,8.2.6,Expression,"Use the multi-byte JSON panel, then you can bypass the multi-byte panel!",,,,, +Senior Division Technician,5.1.9,Expression,"Try to compress the FTP transmitter, maybe it will compress the virtual transmitter!",,,,https://raphaelle.net, +District Operations Manager,8.5.0,Expression,We need to connect the primary AGP microchip!,,,,, +National Tactics Engineer,3.7.5,Unknown,"generating the matrix won't do anything, we need to override the redundant GB matrix!",,,,https://alexys.org, +National Infrastructure Officer,4.2.3,Ignored,We need to quantify the cross-platform TCP circuit!,,,,https://mossie.name, +Chief Directives Manager,2.4.3,File,,,,,, +Chief Integration Architect,1.6.8,File,,,,,http://maybelle.info, +Legacy Solutions Manager,3.6.4,Expression,"I'll generate the 1080p XSS transmitter, that should transmitter the XSS transmitter!",,,,https://camylle.org, +Customer Group Manager,8.0.4,Expression,,,,,https://eino.net, +Internal Metrics Planner,8.9.0,File,,,,,http://laney.org, +Regional Operations Representative,2.9.1,Unknown,You can't navigate the transmitter without indexing the primary XSS transmitter!,,,,, +Chief Configuration Representative,8.2.6,Url,"Try to compress the SMS bus, maybe it will compress the bluetooth bus!",,,,, +Customer Infrastructure Representative,7.4.9,File,,,,,http://margie.com, +Product Program Facilitator,7.3.5,File,,,,,, +District Accounts Specialist,3.9.2,Unknown,,,,,, +Senior Quality Engineer,9.8.7,Unknown,"If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit!",,,,https://adam.info, +Customer Functionality Consultant,5.5.1,Ignored,"The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol!",,,,http://terence.com, +Regional Division Assistant,6.8.5,Ignored,,,,,https://elmira.net, +Legacy Creative Representative,6.3.7,Ignored,We need to program the digital SMTP capacitor!,,,,https://addison.org, +Senior Marketing Architect,1.7.9,File,,,,,, +Lead Web Facilitator,7.8.3,Overwrite,,,,,http://scottie.name, +Future Assurance Analyst,1.1.1,Ignored,,,,,, +Internal Creative Specialist,2.1.3,Url,"connecting the application won't do anything, we need to bypass the mobile ADP application!",,,,, +Senior Division Liaison,7.1.3,Unknown,,,,,, +International Operations Designer,8.2.0,File,,,,,http://casandra.name, +Global Marketing Agent,4.8.7,Url,"parsing the card won't do anything, we need to synthesize the online SQL card!",,,,https://ernest.info, +Legacy Group Agent,9.7.9,File,"Try to connect the IB pixel, maybe it will connect the cross-platform pixel!",,,,, +Human Factors Administrator,4.1.3,Overwrite,,,,,, +Dynamic Identity Director,8.4.5,Ignored,,,,,https://bradly.name, +Forward Infrastructure Consultant,1.3.1,Url,,,,,https://anita.net, +Dynamic Accountability Agent,8.7.5,Expression,We need to program the primary THX protocol!,,,,, +Corporate Paradigm Engineer,8.1.2,Unknown,,,,,http://steve.biz, +Central Operations Technician,4.9.4,File,"Use the back-end SMS feed, then you can program the back-end feed!",,,,, +Global Accounts Administrator,1.2.8,Url,"quantifying the interface won't do anything, we need to navigate the open-source COM interface!",,,,https://jack.name, +Dynamic Accountability Analyst,4.9.7,Unknown,,,,,https://jaron.info, +National Brand Liaison,8.9.2,Ignored,,,,,, +Corporate Data Strategist,9.0.0,Url,,,,,http://eli.net, +Product Tactics Technician,3.8.3,Overwrite,"If we index the protocol, we can get to the FTP protocol through the online FTP protocol!",,,,https://jewel.name, +Regional Communications Officer,3.3.2,Expression,,,,,https://cortez.net, +International Applications Architect,5.6.6,File,"If we index the card, we can get to the XSS card through the neural XSS card!",,,,https://abelardo.com, +International Accountability Officer,2.0.1,File,"Use the wireless FTP interface, then you can back up the wireless interface!",,,,http://lou.info, +District Tactics Specialist,4.7.6,Ignored,,,,,, +Human Accountability Analyst,0.8.7,File,"parsing the program won't do anything, we need to synthesize the haptic IB program!",,,,, +Principal Assurance Associate,9.3.9,Expression,"bypassing the program won't do anything, we need to quantify the online IB program!",,,,, +Regional Marketing Developer,9.7.8,Overwrite,,,,,, +Forward Configuration Supervisor,9.0.8,Overwrite,You can't program the protocol without overriding the primary IB protocol!,,,,http://quinn.name, +Direct Operations Developer,7.1.7,Overwrite,"Try to override the SAS transmitter, maybe it will override the solid state transmitter!",,,,, +Customer Operations Producer,8.9.5,File,,,,,http://cordia.biz, +Legacy Markets Officer,0.4.7,Unknown,We need to override the solid state AGP circuit!,,,,, +Customer Infrastructure Architect,6.5.6,Unknown,,,,,, +Global Brand Associate,3.6.8,Expression,"Try to generate the RSS protocol, maybe it will generate the open-source protocol!",,,,, +Chief Directives Manager,1.1.1,File,,,,,https://xander.net, +Legacy Optimization Assistant,8.8.2,File,,,,,https://fredy.net, +Dynamic Creative Orchestrator,1.2.6,Unknown,,,,,, +Investor Accountability Officer,2.4.3,Overwrite,,,,,, +Customer Integration Agent,3.6.0,Unknown,"If we reboot the driver, we can get to the RAM driver through the digital RAM driver!",,,,, +Future Web Director,5.0.7,Ignored,,,,,http://lacy.name, +National Intranet Technician,8.0.0,Overwrite,,,,,, +Customer Interactions Manager,0.1.3,Unknown,We need to bypass the online COM matrix!,,,,, +Senior Brand Architect,0.9.4,Overwrite,,,,,, +Dynamic Paradigm Officer,4.2.2,Expression,,,,,http://kari.com, +Chief Identity Specialist,6.4.7,Ignored,"transmitting the monitor won't do anything, we need to reboot the online XML monitor!",,,,, +Lead Marketing Technician,4.3.6,Overwrite,,,,,https://pearline.info, +Customer Applications Supervisor,1.4.8,Overwrite,"I'll input the multi-byte TCP sensor, that should sensor the TCP sensor!",,,,https://dillon.biz, +Principal Identity Administrator,0.5.2,File,,,,,, +Dynamic Integration Architect,1.6.3,File,,,,,, +Dynamic Integration Architect,6.6.7,Url,"I'll program the online TCP panel, that should panel the TCP panel!",,,,, +Corporate Functionality Agent,2.3.2,Overwrite,"calculating the panel won't do anything, we need to transmit the open-source PCI panel!",,,,https://rosario.info, +International Intranet Planner,6.4.6,Expression,"The IB interface is down, program the redundant interface so we can program the IB interface!",,,,https://lenna.com, +Forward Communications Engineer,4.5.2,File,"Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor!",,,,, +Dynamic Group Producer,5.9.5,Unknown,We need to hack the multi-byte EXE bus!,,,,https://sonny.com, +Direct Division Officer,6.5.6,Overwrite,"transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol!",,,,http://catherine.name, +National Data Director,0.9.6,Unknown,,,,,, +Regional Program Coordinator,2.3.3,Expression,,,,,http://sarai.net, +Human Web Orchestrator,2.9.2,Url,"The THX interface is down, synthesize the cross-platform interface so we can synthesize the THX interface!",,,,http://elyssa.biz, +National Creative Facilitator,0.0.1,Url,,,,,, +Dynamic Security Assistant,2.0.0,Ignored,"If we calculate the firewall, we can get to the ADP firewall through the auxiliary ADP firewall!",,,,https://eleonore.org, +Legacy Accounts Director,7.6.7,File,"The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth!",,,,http://kelton.org, +Customer Group Director,2.5.2,Expression,You can't index the pixel without copying the redundant XML pixel!,,,,https://eloise.name, +Dynamic Data Technician,4.2.3,File,"I'll copy the optical RAM feed, that should feed the RAM feed!",,,,http://nia.info, +Future Research Officer,8.5.7,Unknown,,,,,https://willow.com, +Principal Interactions Specialist,4.2.6,Overwrite,"If we copy the array, we can get to the PCI array through the optical PCI array!",,,,, +Future Configuration Architect,4.2.6,File,"I'll generate the primary TCP bus, that should bus the TCP bus!",,,,, +National Interactions Representative,7.2.2,File,,,,,http://leonard.com, +Central Metrics Facilitator,9.6.2,Overwrite,,,,,https://damon.com, +Dynamic Tactics Developer,7.5.4,File,,,,,, +District Usability Specialist,4.4.3,File,,,,,http://jaleel.name, +Dynamic Program Analyst,4.1.4,File,,,,,http://laurianne.com, +Internal Accountability Consultant,4.0.0,Url,You can't override the pixel without backing up the optical SSL pixel!,,,,https://rowena.org, +Central Creative Representative,5.1.9,Ignored,,,,,http://asa.com, +National Usability Engineer,4.5.9,Unknown,We need to program the redundant HDD port!,,,,, +District Optimization Consultant,7.7.3,Overwrite,"programming the alarm won't do anything, we need to navigate the auxiliary CSS alarm!",,,,https://alice.info, diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_fc2590c1090180e7.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_fc2590c1090180e7.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_fc2590c1090180e7.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_fe860a6c9b2aeb93.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_fe860a6c9b2aeb93.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_fe860a6c9b2aeb93.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_febd9f3ba43a5ecd.verified.txt b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_febd9f3ba43a5ecd.verified.txt new file mode 100644 index 00000000..f63ad50e --- /dev/null +++ b/tests/NuGetLicense.Test/Output/CsvOutputFormatterTests.ValidatedLicenses_Should_PrintCorrectTable_febd9f3ba43a5ecd.verified.txt @@ -0,0 +1 @@ +Package,Version,License Information Origin,License,License Url,Copyright,Authors,Package Project Url,Errors with Context diff --git a/tests/NuGetLicense.Test/Output/Helper/NuGetVersion.cs b/tests/NuGetLicense.Test/Output/Helper/NuGetVersion.cs new file mode 100644 index 00000000..627f8438 --- /dev/null +++ b/tests/NuGetLicense.Test/Output/Helper/NuGetVersion.cs @@ -0,0 +1,24 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using NuGetUtility.Wrapper.NuGetWrapper.Versioning; + +namespace NuGetLicense.Test.Output.Helper +{ + public class NuGetVersion : INuGetVersion + { + private readonly string _version; + + public NuGetVersion(string version) + { + _version = version; + } + + public int CompareTo(INuGetVersion? other) => throw new NotImplementedException(); + + public override string ToString() + { + return _version; + } + } +} diff --git a/tests/NuGetLicense.Test/Output/TestBase.cs b/tests/NuGetLicense.Test/Output/TestBase.cs index 5fc4b866..5ea74052 100644 --- a/tests/NuGetLicense.Test/Output/TestBase.cs +++ b/tests/NuGetLicense.Test/Output/TestBase.cs @@ -6,7 +6,8 @@ using NuGetLicense.Output; using NuGetUtility.Test.Extensions; using NuGetUtility.Test.Extensions.Helper.ShuffelledEnumerable; -using NuGetUtility.Wrapper.NuGetWrapper.Versioning; + +using HelperNuGetVersion = NuGetLicense.Test.Output.Helper.NuGetVersion; namespace NuGetLicense.Test.Output { @@ -19,10 +20,6 @@ protected TestBase(bool includeCopyright, bool includeAuthors, bool includeLicen _includeLicenseUrl = includeLicenseUrl; } - protected TestBase() - { - } - private IOutputFormatter _uut = null!; protected Faker LicenseValidationErrorFaker = null!; protected Faker ValidatedLicenseFaker = null!; @@ -35,26 +32,26 @@ public void SetUp() { ValidatedLicenseFaker = new Faker().CustomInstantiator(f => new LicenseValidationResult(f.Name.JobTitle(), - new NuGetVersion(f.System.Semver()), + new HelperNuGetVersion(f.System.Semver()), GetNullable(f, f.Internet.Url), GetNullable(f, f.Hacker.Phrase), _includeLicenseUrl ? GetNullable(f, f.Hacker.Phrase) : null, _includeCopyright ? GetNullable(f, f.Hacker.Phrase) : null, _includeAuthors ? GetNullable(f, () => string.Join(",", Enumerable.Repeat(true, f.Random.Int(0, 10)).Select(_ => f.Person.FullName))) : null, - GetNullable(f, () => f.Lorem.Sentence()), - GetNullable(f, () => f.Lorem.Sentence()), + GetNullable(f, () => f.Lorem.Sentence()), + GetNullable(f, () => f.Lorem.Sentence()), f.Random.Enum())) .UseSeed(8675309); LicenseValidationErrorFaker = new Faker().CustomInstantiator(f => new LicenseValidationResult(f.Name.JobTitle(), - new NuGetVersion(f.System.Semver()), + new HelperNuGetVersion(f.System.Semver()), GetNullable(f, f.Internet.Url), GetNullable(f, f.Hacker.Phrase), _includeLicenseUrl ? GetNullable(f, f.Hacker.Phrase) : null, _includeCopyright ? GetNullable(f, f.Hacker.Phrase) : null, _includeAuthors ? GetNullable(f, () => string.Join(",", Enumerable.Repeat(true, f.Random.Int(0, 10)).Select(_ => f.Person.FullName))) : null, - GetNullable(f, () => f.Lorem.Sentence()), - GetNullable(f, () => f.Lorem.Sentence()), + GetNullable(f, () => f.Lorem.Sentence()), + GetNullable(f, () => f.Lorem.Sentence()), f.Random.Enum(), GetErrorList(f).ToList())) .UseSeed(9078345); @@ -106,22 +103,5 @@ public async Task ValidatedLicenses_Should_PrintCorrectTable( await Verify(stream.AsString()).HashParameters(); } - - protected class NuGetVersion : INuGetVersion - { - private readonly string _version; - - public NuGetVersion(string version) - { - _version = version; - } - - public int CompareTo(INuGetVersion? other) => throw new NotImplementedException(); - - public override string ToString() - { - return _version; - } - } } } diff --git a/tests/NuGetUtility.Test/Extensions/StringExtensionsTest.cs b/tests/NuGetUtility.Test/Extensions/StringExtensionsTest.cs index 24f35c5f..610dc038 100644 --- a/tests/NuGetUtility.Test/Extensions/StringExtensionsTest.cs +++ b/tests/NuGetUtility.Test/Extensions/StringExtensionsTest.cs @@ -41,13 +41,13 @@ internal class PathLikeTests { [TestCase("test", "test", true)] [TestCase("test", "TEST", true)] - [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "*.csproj", true)] - [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "MyProject.csproj", true)] - [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "MyProject.*", true)] - [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "*MyProject.csproj", true)] - [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "C:\\Projects\\*\\*.csproj", true)] - [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "*.vbproj", false)] - [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "OtherProject.csproj", false)] + [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "*.csproj", true, TestName = "PathLike_Windows_MyProject_ExtensionMatch")] + [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "MyProject.csproj", true, TestName = "PathLike_Windows_MyProject_ExactFileNameMatch")] + [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "MyProject.*", true, TestName = "PathLike_Windows_MyProject_WildcardFileNameMatch")] + [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "*MyProject.csproj", true, TestName = "PathLike_Windows_MyProject_SuffixFileNameMatch")] + [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "C:\\Projects\\*\\*.csproj", true, TestName = "PathLike_Windows_MyProject_FullPathPatternMatch")] + [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "*.vbproj", false, TestName = "PathLike_Windows_MyProject_NonMatchingExtension")] + [TestCase("C:\\Projects\\MyProject\\MyProject.csproj", "OtherProject.csproj", false, TestName = "PathLike_Windows_MyProject_NonMatchingFileName")] [TestCase("/home/user/projects/MyProject/MyProject.csproj", "*.csproj", true)] [TestCase("/home/user/projects/MyProject/MyProject.csproj", "MyProject.csproj", true)] [TestCase("/home/user/projects/MyProject/MyProject.csproj", "MyProject.*", true)] @@ -55,13 +55,13 @@ internal class PathLikeTests [TestCase("/home/user/projects/MyProject/MyProject.csproj", "/home/user/*/MyProject/*.csproj", true)] [TestCase("/home/user/projects/MyProject/MyProject.csproj", "*.vbproj", false)] [TestCase("/home/user/projects/MyProject/MyProject.csproj", "OtherProject.csproj", false)] - [TestCase("C:\\Projects\\Testing\\Test.pyproj", "*.pyproj", true)] - [TestCase("C:\\Projects\\Testing\\Test.pyproj", "Test.pyproj", true)] - [TestCase("C:\\Projects\\Testing\\Test.pyproj", "*Testing*", true)] - [TestCase("C:\\Projects\\Mosaik.Testing.Something\\Project.csproj", "*Mosaik.Testing*", true)] - [TestCase("C:\\Projects\\Mosaik.Testing.Something\\Project.csproj", "Project.csproj", true)] + [TestCase("C:\\Projects\\Testing\\Test.pyproj", "*.pyproj", true, TestName = "PathLike_Windows_Testing_PythonProjectExtensionMatch")] + [TestCase("C:\\Projects\\Testing\\Test.pyproj", "Test.pyproj", true, TestName = "PathLike_Windows_Testing_PythonProjectFileNameMatch")] + [TestCase("C:\\Projects\\Testing\\Test.pyproj", "*Testing*", true, TestName = "PathLike_Windows_Testing_FolderPatternMatch")] + [TestCase("C:\\Projects\\Mosaik.Testing.Something\\Project.csproj", "*Mosaik.Testing*", true, TestName = "PathLike_Windows_MosaikTesting_FolderPatternMatch")] + [TestCase("C:\\Projects\\Mosaik.Testing.Something\\Project.csproj", "Project.csproj", true, TestName = "PathLike_Windows_MosaikTesting_FileNameMatch")] [TestCase("Project.Name.Test", "Project.Name*", true)] - [TestCase("Some\\Path\\Project.Name.Test", "Project.Name*", true)] + [TestCase("Some\\Path\\Project.Name.Test", "Project.Name*", true, TestName = "PathLike_Windows_RelativePath_FileNamePatternMatch")] public void PathLike_Should_MatchPattern_AgainstFullPathOrFileName(string path, string pattern, bool expected) { Assert.That(path.PathLike(pattern), Is.EqualTo(expected)); diff --git a/tests/NuGetUtility.Test/NuGetUtility.Test.csproj b/tests/NuGetUtility.Test/NuGetUtility.Test.csproj index 170a8aaf..23a047c6 100644 --- a/tests/NuGetUtility.Test/NuGetUtility.Test.csproj +++ b/tests/NuGetUtility.Test/NuGetUtility.Test.csproj @@ -18,11 +18,17 @@ 12.0 + + $(PkgNuGet_Frameworks)\lib\net472 + $(PkgNuGet_Frameworks)\lib\net8.0 + + + all @@ -44,4 +50,8 @@ + + + + diff --git a/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackageReaderTest.cs b/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackageReaderTest.cs index e6d4ed39..2a75b964 100644 --- a/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackageReaderTest.cs +++ b/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackageReaderTest.cs @@ -30,7 +30,7 @@ public void SetUp() _packageSpecMock = Substitute.For(); _packagesConfigReader = Substitute.For(); _lockFileTargets = _fixture.CreateMany(TargetFrameworkCount).ToArray(); - _lockFileLibraries = _fixture.CreateMany(50).ToArray(); + _lockFileLibraries = _fixture.CreateMany(50).ToArray(); _packageSpecTargetFrameworks = _fixture.CreateMany(TargetFrameworkCount).ToArray(); _targetFrameworks = _fixture.CreateMany(TargetFrameworkCount).ToArray(); @@ -44,6 +44,8 @@ public void SetUp() return true; }); _projectMock.FullPath.Returns(_projectPath); + _projectMock.GetPackageReferences().Returns(Array.Empty()); + _projectMock.GetPackageReferencesForTarget(Arg.Any()).Returns(Array.Empty()); _lockFileFactory.GetFromFile(_assetsFilePath).Returns(_lockFileMock); _lockFileMock.PackageSpec.Returns(_packageSpecMock); _packageSpecMock.IsValid().Returns(true); @@ -70,7 +72,7 @@ public void SetUp() targetFrameworksIterator.MoveNext(); lockFileTarget.TargetFramework.Returns(targetFrameworksIterator.Current); - ILockFileLibrary[] referencedLibraries = _lockFileLibraries.Shuffle(rnd) + ILockFileTargetLibrary[] referencedLibraries = _lockFileLibraries.Shuffle(rnd) .Take(5) .ToArray(); _referencedPackagesForFramework[targetFrameworksIterator.Current] = referencedLibraries.Select(l => new PackageIdentity(l.Name, l.Version!)).ToArray(); @@ -99,7 +101,12 @@ public void SetUp() } } - _uut = new ReferencedPackageReader(_msBuild, _lockFileFactory, _packagesConfigReader); + _uut = new ReferencedPackageReader( + _msBuild, + _lockFileFactory, + new NuGetFrameworkUtility(), + new AssetsPackageDependencyReader(new NuGetFrameworkUtility()), + _packagesConfigReader); } private const int TargetFrameworkCount = 5; @@ -113,7 +120,7 @@ public void SetUp() private ILockFile _lockFileMock = null!; private IPackageSpec _packageSpecMock = null!; private IEnumerable _lockFileTargets = null!; - private IEnumerable _lockFileLibraries = null!; + private IEnumerable _lockFileLibraries = null!; private IEnumerable _packageSpecTargetFrameworks = null!; private IEnumerable _targetFrameworks = null!; private IFixture _fixture = null!; @@ -151,18 +158,6 @@ public void GetInstalledPackages_Should_ThrowReferencedPackageReaderException_If Assert.That(exception!.Message, Is.EqualTo($"Failed to validate project assets for project {_projectPath}")); } - [Test] - public void GetInstalledPackages_Should_ThrowReferencedPackageReaderException_If_TargetsArrayIsNull( - [Values] bool includeTransitive) - { - _lockFileMock.Targets.Returns((IEnumerable?)null); - - ReferencedPackageReaderException? exception = Assert.Throws(() => - _uut.GetInstalledPackages(_projectPath, includeTransitive)); - - Assert.That(exception!.Message, Is.EqualTo($"Failed to validate project assets for project {_projectPath}")); - } - [Test] public void GetInstalledPackages_Should_ThrowReferencedPackageReaderException_If_TargetsArrayDoesNotContainAnyElement( @@ -194,9 +189,22 @@ public void public void GetInstalledPackages_Should_ThrowReferencedPackageReaderException_If_Requested_FrameworkIsNotFound() { - string targetFramework = _fixture.Create(); - _packageSpecMock.TargetFrameworks - .Returns(Enumerable.Empty()); + const string targetFramework = "net10.0"; + + ILockFileTarget targetNet80 = Substitute.For(); + INuGetFramework frameworkNet80 = Substitute.For(); + frameworkNet80.ToString().Returns("net8.0"); + targetNet80.TargetFramework.Returns(frameworkNet80); + targetNet80.Libraries.Returns(Array.Empty()); + + ILockFileTarget targetNet90 = Substitute.For(); + INuGetFramework frameworkNet90 = Substitute.For(); + frameworkNet90.ToString().Returns("net9.0"); + targetNet90.TargetFramework.Returns(frameworkNet90); + targetNet90.Libraries.Returns(Array.Empty()); + + _lockFileMock.Targets.Returns([targetNet80, targetNet90]); + ReferencedPackageReaderException? exception = Assert.Throws(() => _uut.GetInstalledPackages(_projectPath, false, targetFramework)); @@ -239,11 +247,86 @@ public void GetInstalledPackages_Should_ReturnCorrectValues_If_IncludingTransiti [Test] public void GetInstalledPackages_Should_OnlyReturnPackages_For_TargetFramework() { - string name = _fixture.Create(); - INuGetFramework targetFramework = _targetFrameworks.Shuffle(new Random(69843456)).First(); - targetFramework.Equals(name).Returns(true); - IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, name); - Assert.That(result, Is.EquivalentTo(_referencedPackagesForFramework[targetFramework])); + const string requestedTargetFramework = "net8.0"; + + ILockFileTargetLibrary net80Library = CreateLibrary("PackageNet80"); + ILockFileTargetLibrary net90Library = CreateLibrary("PackageNet90"); + + ILockFileTarget targetNet80 = Substitute.For(); + INuGetFramework frameworkNet80 = Substitute.For(); + frameworkNet80.ToString().Returns("net8.0"); + targetNet80.TargetFramework.Returns(frameworkNet80); + targetNet80.Libraries.Returns([net80Library]); + + ILockFileTarget targetNet90 = Substitute.For(); + INuGetFramework frameworkNet90 = Substitute.For(); + frameworkNet90.ToString().Returns("net9.0"); + targetNet90.TargetFramework.Returns(frameworkNet90); + targetNet90.Libraries.Returns([net90Library]); + + _lockFileMock.Targets.Returns([targetNet80, targetNet90]); + + IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, requestedTargetFramework); + + Assert.That(result.Select(package => package.Id), Is.EquivalentTo(["PackageNet80"])); + Assert.That(result.Select(package => package.Id), Does.Not.Contain("PackageNet90")); + } + + [Test] + public void GetInstalledPackages_Should_OnlyReturnPackages_For_Equivalent_TargetFramework_Representation() + { + const string requestedTargetFramework = "net8.0"; + + ILockFileTargetLibrary equivalentTargetLibrary = CreateLibrary("PackageEquivalent"); + ILockFileTargetLibrary otherTargetLibrary = CreateLibrary("PackageOther"); + + ILockFileTarget targetEquivalent = Substitute.For(); + INuGetFramework frameworkEquivalent = Substitute.For(); + frameworkEquivalent.ToString().Returns(".NETCoreApp,Version=v8.0"); + targetEquivalent.TargetFramework.Returns(frameworkEquivalent); + targetEquivalent.Libraries.Returns([equivalentTargetLibrary]); + + ILockFileTarget targetOther = Substitute.For(); + INuGetFramework frameworkOther = Substitute.For(); + frameworkOther.ToString().Returns("net9.0"); + targetOther.TargetFramework.Returns(frameworkOther); + targetOther.Libraries.Returns([otherTargetLibrary]); + + _lockFileMock.Targets.Returns([targetEquivalent, targetOther]); + + IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, requestedTargetFramework); + + Assert.That(result.Select(package => package.Id), Is.EquivalentTo(["PackageEquivalent"])); + Assert.That(result.Select(package => package.Id), Does.Not.Contain("PackageOther")); + } + + [TestCase("net8.0")] + [TestCase("NET8.0")] + [TestCase(" .NETCoreApp,Version=v8.0 ")] + [TestCase(".NETCoreApp,Version=v8.0")] + public void GetInstalledPackages_Should_OnlyReturnPackages_For_TargetFramework_Variants(string requestedTargetFramework) + { + ILockFileTargetLibrary variantTargetLibrary = CreateLibrary("PackageVariant"); + ILockFileTargetLibrary otherTargetLibrary = CreateLibrary("PackageOther"); + + ILockFileTarget targetVariant = Substitute.For(); + INuGetFramework frameworkVariant = Substitute.For(); + frameworkVariant.ToString().Returns("net8.0"); + targetVariant.TargetFramework.Returns(frameworkVariant); + targetVariant.Libraries.Returns([variantTargetLibrary]); + + ILockFileTarget targetOther = Substitute.For(); + INuGetFramework frameworkOther = Substitute.For(); + frameworkOther.ToString().Returns("net9.0"); + targetOther.TargetFramework.Returns(frameworkOther); + targetOther.Libraries.Returns([otherTargetLibrary]); + + _lockFileMock.Targets.Returns([targetVariant, targetOther]); + + IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, requestedTargetFramework); + + Assert.That(result.Select(package => package.Id), Is.EquivalentTo(["PackageVariant"])); + Assert.That(result.Select(package => package.Id), Does.Not.Contain("PackageOther")); } [Test] @@ -300,5 +383,244 @@ public void GetInstalledPackages_Should_ReturnPackagesReturnedBy_PackageGonfigRe Assert.That(packages, Is.EquivalentTo(expectedPackages)); } + + [Test] + public void GetInstalledPackages_Should_ExcludePackages_With_PublishFalse_Metadata() + { + string excludedPackage = _fixture.Create(); + string includedPackage = _fixture.Create(); + + ILockFileTargetLibrary excludedLibrary = Substitute.For(); + excludedLibrary.Name.Returns(excludedPackage); + excludedLibrary.Version.Returns(Substitute.For()); + + ILockFileTargetLibrary includedLibrary = Substitute.For(); + includedLibrary.Name.Returns(includedPackage); + includedLibrary.Version.Returns(Substitute.For()); + + ILockFileTarget target = Substitute.For(); + target.Libraries.Returns([excludedLibrary, includedLibrary]); + INuGetFramework targetFramework = Substitute.For(); + targetFramework.ToString().Returns("net8.0"); + target.TargetFramework.Returns(targetFramework); + _lockFileMock.Targets.Returns([target]); + + _projectMock.GetPackageReferences().Returns( + [ + new PackageReferenceMetadata(excludedPackage, new Dictionary(StringComparer.OrdinalIgnoreCase) + { + ["Publish"] = "false" + }), + new PackageReferenceMetadata(includedPackage, new Dictionary()) + ]); + _projectMock.GetPackageReferencesForTarget("net8.0").Returns( + [ + new PackageReferenceMetadata(excludedPackage, new Dictionary(StringComparer.OrdinalIgnoreCase) + { + ["Publish"] = "false" + }), + new PackageReferenceMetadata(includedPackage, new Dictionary()) + ]); + + ITargetFrameworkInformation targetFrameworkInformation = Substitute.For(); + targetFrameworkInformation.FrameworkName.Returns(targetFramework); + ILibraryDependency excludedDependency = CreateDependency(excludedPackage); + ILibraryDependency includedDependency = CreateDependency(includedPackage); + targetFrameworkInformation.Dependencies.Returns([excludedDependency, includedDependency]); + _packageSpecMock.TargetFrameworks.Returns([targetFrameworkInformation]); + + IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, null, true); + + Assert.That(result.Select(p => p.Id), Does.Not.Contain(excludedPackage)); + Assert.That(result.Select(p => p.Id), Does.Contain(includedPackage)); + } + + [Test] + public void GetInstalledPackages_Should_Apply_PublishFalse_PerTarget_When_TargetFramework_IsNull() + { + const string packageName = "PackageConditional"; + + INuGetFramework net80 = Substitute.For(); + net80.ToString().Returns("net8.0"); + + INuGetFramework net90 = Substitute.For(); + net90.ToString().Returns("net9.0"); + + ILockFileTarget targetNet80 = Substitute.For(); + targetNet80.TargetFramework.Returns(net80); + ILockFileTargetLibrary net80Library = CreateLibrary(packageName); + targetNet80.Libraries.Returns([net80Library]); + + ILockFileTarget targetNet90 = Substitute.For(); + targetNet90.TargetFramework.Returns(net90); + ILockFileTargetLibrary net90Library = CreateLibrary(packageName); + targetNet90.Libraries.Returns([net90Library]); + + _lockFileMock.Targets.Returns([targetNet80, targetNet90]); + + ITargetFrameworkInformation net80Info = Substitute.For(); + net80Info.FrameworkName.Returns(net80); + ILibraryDependency net80Dependency = CreateDependency(packageName); + net80Info.Dependencies.Returns([net80Dependency]); + + ITargetFrameworkInformation net90Info = Substitute.For(); + net90Info.FrameworkName.Returns(net90); + ILibraryDependency net90Dependency = CreateDependency(packageName); + net90Info.Dependencies.Returns([net90Dependency]); + + _packageSpecMock.TargetFrameworks.Returns([net80Info, net90Info]); + + _projectMock.GetPackageReferences().Returns( + [ + new PackageReferenceMetadata(packageName, new Dictionary(StringComparer.OrdinalIgnoreCase) + { + ["Publish"] = "false" + }) + ]); + + _projectMock.GetPackageReferencesForTarget("net8.0").Returns( + [ + new PackageReferenceMetadata(packageName, new Dictionary(StringComparer.OrdinalIgnoreCase) + { + ["Publish"] = "false" + }) + ]); + + _projectMock.GetPackageReferencesForTarget("net9.0").Returns(Array.Empty()); + + IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, null, true); + + Assert.That(result.Select(p => p.Id), Does.Contain(packageName)); + _projectMock.Received(1).GetPackageReferencesForTarget("net8.0"); + _projectMock.Received(1).GetPackageReferencesForTarget("net9.0"); + _projectMock.DidNotReceive().GetPackageReferences(); + } + + [Test] + public void GetInstalledPackages_Should_Keep_SharedTransitiveDependency_If_ReachableFrom_PublishableRoot() + { + INuGetFramework targetFramework = Substitute.For(); + targetFramework.ToString().Returns("net10.0"); + + ILockFileTarget target = Substitute.For(); + target.TargetFramework.Returns(targetFramework); + ILockFileTargetLibrary[] targetLibraries = + [ + CreateLibrary("PackageA", "PackageC"), + CreateLibrary("PackageB", "PackageC"), + CreateLibrary("PackageC") + ]; + target.Libraries.Returns(targetLibraries); + _lockFileMock.Targets.Returns([target]); + + ITargetFrameworkInformation targetFrameworkInformation = Substitute.For(); + targetFrameworkInformation.FrameworkName.Returns(targetFramework); + ILibraryDependency[] directDependencies = + [ + CreateDependency("PackageA"), + CreateDependency("PackageB") + ]; + targetFrameworkInformation.Dependencies.Returns(directDependencies); + _packageSpecMock.TargetFrameworks.Returns([targetFrameworkInformation]); + + _projectMock.GetPackageReferences().Returns( + [ + new PackageReferenceMetadata("PackageA", new Dictionary()), + new PackageReferenceMetadata("PackageB", new Dictionary + { + ["Publish"] = "false" + }) + ]); + _projectMock.GetPackageReferencesForTarget("net10.0").Returns( + [ + new PackageReferenceMetadata("PackageA", new Dictionary()), + new PackageReferenceMetadata("PackageB", new Dictionary + { + ["Publish"] = "false" + }) + ]); + + IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, null, true); + + Assert.That(result.Select(p => p.Id), Does.Contain("PackageA")); + Assert.That(result.Select(p => p.Id), Does.Not.Contain("PackageB")); + Assert.That(result.Select(p => p.Id), Does.Contain("PackageC")); + } + + [Test] + public void GetInstalledPackages_Should_Exclude_TransitiveDependency_If_OnlyReachableFrom_PublishFalseRoot() + { + INuGetFramework targetFramework = Substitute.For(); + targetFramework.ToString().Returns("net10.0"); + + ILockFileTarget target = Substitute.For(); + target.TargetFramework.Returns(targetFramework); + ILockFileTargetLibrary[] targetLibraries = + [ + CreateLibrary("PackageA"), + CreateLibrary("PackageB", "PackageC"), + CreateLibrary("PackageC") + ]; + target.Libraries.Returns(targetLibraries); + _lockFileMock.Targets.Returns([target]); + + ITargetFrameworkInformation targetFrameworkInformation = Substitute.For(); + targetFrameworkInformation.FrameworkName.Returns(targetFramework); + ILibraryDependency[] directDependencies = + [ + CreateDependency("PackageA"), + CreateDependency("PackageB") + ]; + targetFrameworkInformation.Dependencies.Returns(directDependencies); + _packageSpecMock.TargetFrameworks.Returns([targetFrameworkInformation]); + + _projectMock.GetPackageReferences().Returns( + [ + new PackageReferenceMetadata("PackageA", new Dictionary()), + new PackageReferenceMetadata("PackageB", new Dictionary + { + ["Publish"] = "false" + }) + ]); + _projectMock.GetPackageReferencesForTarget("net10.0").Returns( + [ + new PackageReferenceMetadata("PackageA", new Dictionary()), + new PackageReferenceMetadata("PackageB", new Dictionary + { + ["Publish"] = "false" + }) + ]); + + IEnumerable result = _uut.GetInstalledPackages(_projectPath, true, null, true); + + Assert.That(result.Select(p => p.Id), Does.Contain("PackageA")); + Assert.That(result.Select(p => p.Id), Does.Not.Contain("PackageB")); + Assert.That(result.Select(p => p.Id), Does.Not.Contain("PackageC")); + } + + private static ILibraryDependency CreateDependency(string packageName) + { + ILibraryDependency dependency = Substitute.For(); + dependency.Name.Returns(packageName); + return dependency; + } + + private static ILockFileTargetLibrary CreateLibrary(string packageName, params string[] dependencyNames) + { + ILockFileTargetLibrary library = Substitute.For(); + library.Name.Returns(packageName); + library.Type.Returns("package"); + library.Version.Returns(Substitute.For()); + IPackageDependency[] dependencies = dependencyNames.Select(CreatePackageDependency).ToArray(); + library.Dependencies.Returns(dependencies); + return library; + } + + private static IPackageDependency CreatePackageDependency(string dependencyName) + { + IPackageDependency packageDependency = Substitute.For(); + packageDependency.Id.Returns(dependencyName); + return packageDependency; + } } } diff --git a/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackagesReaderIntegrationTest.cs b/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackagesReaderIntegrationTest.cs index 3592a6e2..06cecb02 100644 --- a/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackagesReaderIntegrationTest.cs +++ b/tests/NuGetUtility.Test/ReferencedPackagesReader/ReferencedPackagesReaderIntegrationTest.cs @@ -3,6 +3,7 @@ using NuGetUtility.ReferencedPackagesReader; using NuGetUtility.Wrapper.MsBuildWrapper; +using NuGetUtility.Wrapper.NuGetWrapper.Frameworks; using NuGetUtility.Wrapper.NuGetWrapper.Packaging.Core; using NuGetUtility.Wrapper.NuGetWrapper.ProjectModel; @@ -20,7 +21,12 @@ public void SetUp() IPackagesConfigReader packagesConfigReader = OperatingSystem.IsWindows() ? new WindowsPackagesConfigReader() : new FailingPackagesConfigReader(); #endif - _uut = new ReferencedPackageReader(new MsBuildAbstraction(), new LockFileFactory(), packagesConfigReader); + _uut = new ReferencedPackageReader( + new MsBuildAbstraction(), + new LockFileFactory(), + new NuGetFrameworkUtility(), + new AssetsPackageDependencyReader(new NuGetFrameworkUtility()), + packagesConfigReader); } private ReferencedPackageReader? _uut; diff --git a/tests/NuGetUtility.UrlToLicenseMapping.Test/NuGetUtility.UrlToLicenseMapping.Test.csproj b/tests/NuGetUtility.UrlToLicenseMapping.Test/NuGetUtility.UrlToLicenseMapping.Test.csproj index 70da25c5..80de9789 100644 --- a/tests/NuGetUtility.UrlToLicenseMapping.Test/NuGetUtility.UrlToLicenseMapping.Test.csproj +++ b/tests/NuGetUtility.UrlToLicenseMapping.Test/NuGetUtility.UrlToLicenseMapping.Test.csproj @@ -16,7 +16,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/NuGetUtility.UrlToLicenseMapping.Test/UrlToLicenseMappingTest.cs b/tests/NuGetUtility.UrlToLicenseMapping.Test/UrlToLicenseMappingTest.cs index c145adcb..432fe8b9 100644 --- a/tests/NuGetUtility.UrlToLicenseMapping.Test/UrlToLicenseMappingTest.cs +++ b/tests/NuGetUtility.UrlToLicenseMapping.Test/UrlToLicenseMappingTest.cs @@ -1,6 +1,7 @@ // Licensed to the projects contributors. // The license conditions are provided in the LICENSE file located in the project root +using System.Collections.Concurrent; using OpenQA.Selenium; using OpenQA.Selenium.Chrome; @@ -17,34 +18,77 @@ public static IEnumerable> GetDefaultMappings() public class UrlToLicenseMappingTest { private const int RETRY_COUNT = 3; + private const int MAX_CONCURRENT_DRIVERS = 5; + + private static readonly ConcurrentQueue s_driverPool = new(); + private static readonly SemaphoreSlim s_driverSlots = new(MAX_CONCURRENT_DRIVERS, MAX_CONCURRENT_DRIVERS); + + [After(Class)] + public static void TearDown() + { + while (s_driverPool.TryDequeue(out DisposableWebDriver? driver)) + { + driver?.Dispose(); + } + } + [Test] [MethodDataSource(typeof(UrlToLicenseMappingTestSource), nameof(UrlToLicenseMappingTestSource.GetDefaultMappings))] - [NotInParallel(nameof(License_Should_Be_Available_And_Match_Expected_License))] public async Task License_Should_Be_Available_And_Match_Expected_License(KeyValuePair mappedValue) { int retryCount = 0; int baseDelayMs = 2000; - using var driver = new DisposableWebDriver(); - while (true) + bool runSucceeded = false; + + using var slot = new DriverSlot(s_driverSlots); + await slot.WaitAsync(); + + // Grab an existing driver from the pool, or create a new one if the pool is empty + if (!s_driverPool.TryDequeue(out DisposableWebDriver? driver)) { - Result licenseResult = await GetLicenseValue(mappedValue.Key, driver); - if (licenseResult.IsSuccess) + driver = new DisposableWebDriver(); + } + + try + { + while (true) { - await Verify(licenseResult.Value).HashParameters().UseStringComparer(CompareLicense); - return; + Result licenseResult = await GetLicenseValue(mappedValue.Key, driver); + + if (licenseResult.IsSuccess) + { + await Verify(licenseResult.Value).HashParameters().UseStringComparer(CompareLicense); + runSucceeded = true; + return; + } + + if (retryCount >= RETRY_COUNT) + { + Assert.Fail(licenseResult.Error); + } + + int retryTimeout = (int)(baseDelayMs * Math.Pow(10, retryCount)) + Random.Shared.Next(1000, 3000); + retryCount++; + + Console.WriteLine($"Failed to check license. Retry count: {retryCount}\n\n"); + Console.WriteLine($"Error:"); + Console.WriteLine(licenseResult.Error); + Console.WriteLine($"\n\nRetrying after {retryTimeout}ms\n\n"); + + await Task.Delay(retryTimeout); } - if (retryCount >= RETRY_COUNT) + } + finally + { + // Return the driver back to the pool so the next test case can reuse it + if (runSucceeded) { - Assert.Fail(licenseResult.Error); + s_driverPool.Enqueue(driver); + } + else + { + driver.Dispose(); } - - int retryTimeout = (int)(baseDelayMs * Math.Pow(10, retryCount)) + Random.Shared.Next(1000, 3000); - retryCount++; - Console.WriteLine($"Failed to check license. Retry count: {retryCount}\n\n"); - Console.WriteLine($"Error:"); - Console.WriteLine(licenseResult.Error); - Console.WriteLine($"\n\nRetrying after {retryTimeout}ms\n\n"); - await Task.Delay(retryTimeout); } } @@ -60,10 +104,12 @@ private async Task> GetLicenseValue(Uri licenseUrl, DisposableWeb { return new() { Error = $"Failed to navigate to {licenseUrl}.\n{e}" }; } - if (bodyText.Contains("rate limit")) + + if (bodyText.Contains("rate limit", StringComparison.OrdinalIgnoreCase)) { return new() { Error = $"Rate limit exceeded:\n{bodyText}" }; } + return new() { Value = bodyText }; } @@ -95,5 +141,21 @@ public void Dispose() internal IWebElement FindElement(By by) => _driver.FindElement(by); internal INavigation Navigate() => _driver.Navigate(); } + + private sealed class DriverSlot(SemaphoreSlim sem) : IDisposable + { + private bool _disposed; + + public async Task WaitAsync() => await sem.WaitAsync(); + + public void Dispose() + { + if (!_disposed) + { + sem.Release(); + _disposed = true; + } + } + } } } diff --git a/tests/targets/MultiTargetProjectWithDifferentDependencies/MultiTargetProjectWithDifferentDependencies.csproj b/tests/targets/MultiTargetProjectWithDifferentDependencies/MultiTargetProjectWithDifferentDependencies.csproj index d3b19c7d..9c185657 100644 --- a/tests/targets/MultiTargetProjectWithDifferentDependencies/MultiTargetProjectWithDifferentDependencies.csproj +++ b/tests/targets/MultiTargetProjectWithDifferentDependencies/MultiTargetProjectWithDifferentDependencies.csproj @@ -1,4 +1,4 @@ - + net472;net9.0;net8.0-browser diff --git a/tests/targets/VersionRangesProject/VersionRangesProject.csproj b/tests/targets/VersionRangesProject/VersionRangesProject.csproj index 39441965..3e7bda60 100644 --- a/tests/targets/VersionRangesProject/VersionRangesProject.csproj +++ b/tests/targets/VersionRangesProject/VersionRangesProject.csproj @@ -5,7 +5,7 @@ - + \ No newline at end of file